Add, subtract, multiply, and divide fractions with ease. See the result as a simplified fraction, mixed number, decimal, and percentage. Interactive bar models show the fractions visually.
Fractions are one of the most fundamental concepts in mathematics, appearing everywhere from elementary arithmetic to advanced calculus, engineering, and data science. A fraction represents a part of a whole, written as a/b where a is the numerator (the part) and b is the denominator (the whole). Fractions are used to describe proportions, ratios, probabilities, and measurements. Whether you are a student learning the basics, a teacher preparing lessons, or a professional needing quick fraction calculations, this tool provides a reliable, visual, and educational way to work with fractions.
For any two fractions a/b and c/d (with b, d ≠ 0):
Addition: a/b + c/d = ad + bc/bd | Subtraction: a/b − c/d = ad − bc/bd
Multiplication: a/b × c/d = ac/bd | Division: a/b ÷ c/d = a/b × d/c = ad/bc
The result is then simplified by dividing numerator and denominator by their Greatest Common Divisor (GCD).
The rules for fraction arithmetic are derived from the fundamental properties of numbers. For addition and subtraction, we need a common denominator — typically the least common multiple (LCM) of the denominators, or simply the product. The formula a/b + c/d = (ad + bc)/bd works because we are scaling each fraction to have the same denominator bd. This is equivalent to finding a common ground for comparison.
A crucial underlying concept is equivalent fractions — fractions that represent the same value, such as ½ and ²⁄₄. Our simplification process reverses this: by dividing numerator and denominator by their GCD, we find the most compact equivalent fraction. Understanding this equivalence is key to grasping why cross‑multiplication works in addition and subtraction.
For multiplication, we multiply numerators together and denominators together. This makes intuitive sense: if you have half of a half, you get a quarter. Division is multiplication by the reciprocal — a/b ÷ c/d = a/b × d/c — which follows from the fact that dividing by a number is the same as multiplying by its inverse.
The final step in any fraction operation is simplification. We find the greatest common divisor (GCD) of the numerator and denominator using the Euclidean algorithm, then divide both by it. This yields the fraction in its most reduced form, which is mathematically elegant and easier to interpret.
| Scenario | Example | How the Calculator Helps |
|---|---|---|
| Adding fractions with different denominators | ⅔ + ¼ | Finds common denominator, shows cross‑multiplication steps, gives simplified result. |
| Subtracting a larger fraction from a smaller one | ⅕ − ⅔ | Handles negative results correctly, shows the negative simplified fraction. |
| Multiplying fractions | ⅘ × ⅚ | Multiplies numerators and denominators, simplifies immediately. |
| Dividing fractions | ⅞ ÷ ⅓ | Shows the reciprocal step and multiplication, then simplifies. |
| Improper fractions | ⁷⁄₄ | Converts to mixed number (1 ¾) and shows both forms. |
| Fractions with large numbers | ²⁴⁹⁄₃₀₁ | Efficiently finds GCD using Euclidean algorithm for simplification. |
Imagine you have a recipe that serves 6 people, but you need to serve 4. The recipe calls for ¾ cup of flour, ⅓ cup of sugar, and ½ teaspoon of salt. To scale down, you multiply each ingredient by ⅔ (since 4/6 = ⅔). This requires fraction multiplication: ¾ × ⅔ = ½ cup flour, ⅓ × ⅔ = ²⁄₉ cup sugar, ½ × ⅔ = ⅓ teaspoon salt. Our fraction calculator handles these operations instantly, with visual bars showing the scaled amounts. This is a perfect example of how fraction arithmetic is used in everyday life.
A carpenter needs to divide a 9⅝‑inch wooden board into 3 equal parts. Using fraction division, 9⅝ ÷ 3 = (77/8) ÷ 3 = 77/24 = 3⁵⁄₂₄ inches per piece. This calculator handles mixed numbers effortlessly, converting them to improper fractions, dividing, and returning the exact measurement in both fractional and decimal forms (3.208 inches) for precise cutting. This eliminates guesswork and material waste.
A store offers a ⅕ (20%) discount on a $75 item. To calculate the sale price, you need to find ⅕ of $75, which is $15. The new price is $75 − $15 = $60. Or, if you want to express a tax rate of ⅜ as a percentage, you compute ⅜ = 0.375 = 37.5%. Our calculator provides the percentage and decimal conversions automatically, making it ideal for quick financial math.
Fractions extend naturally into algebra as rational expressions. The same rules for adding, subtracting, multiplying, and dividing fractions apply to algebraic fractions, where numerators and denominators are polynomials. For example, simplifying (x² − 1)/(x − 1) requires factoring and cancellation — exactly analogous to simplifying numerical fractions. Understanding fraction arithmetic is therefore a foundational skill for calculus, physics, and engineering.
In probability theory, fractions represent likelihoods. A probability of ⅗ means 3 favorable outcomes out of 5 total equally likely outcomes. In statistics, fractions are used to express proportions and rates. In computer science, fractions appear in algorithms for numerical precision, graphics (aspect ratios), and data compression (lossy vs. lossless ratios).
In programming, fractions are often represented as rational numbers to avoid floating‑point errors
(e.g., Python's fractions.Fraction or Julia's Rational). In data science, fractions underpin precision, recall, and F1‑scores — metrics that are simply fractions of correctly predicted instances
over total instances. Mastering fraction arithmetic is thus not just academic, but a practical skill for modern technical fields.