# Improper Fractions to Mixed Numbers Calculator > Convert an improper fraction to a reduced mixed number. Page: https://askcalculators.com/calculator/improper-fractions-to-mixed-numbers-calculator/ Definition: https://askcalculators.com/calculator/improper-fractions-to-mixed-numbers-calculator/definition.json JSON Schema: https://askcalculators.com/calculator/improper-fractions-to-mixed-numbers-calculator/schema.json Version: 1.0.0 Maintained by: AskCalculators (software project; not a credentialed reviewer) Qualified review: pending. Automated checks do not establish professional approval. Page status: Live Review status: Pending ## Use Open the calculator page and enter values. Query-string parameters can restore and bookmark a calculation. Example: https://askcalculators.com/calculator/improper-fractions-to-mixed-numbers-calculator/?numerator=17&denominator=5 ## Inputs - numerator: Numerator; type=number; required; default=17 - denominator: Denominator; type=number; required; default=5 ## Outputs - mixedNumber: Mixed number; format=text; primary - reducedFraction: Reduced improper fraction; format=text - wholePart: Whole-number part; format=integer - remainder: Remainder numerator; format=integer ## Formula whole = trunc(numerator ÷ denominator); remainder = numerator − whole × denominator ## Rules - Empty optional inputs are undefined, not zero. - Hidden conditional inputs are ignored. - Do not invent missing required inputs.