Rational Numbers
Learning objectives
- Define rational numbers as ratios of integers
- Perform arithmetic with fractions
- Convert between forms and simplify fractions
Division has a problem in . You can add, subtract, and multiply any two integers and stay inside the set, but falls off the edge: there is no integer that solves it. The way out is exactly parallel to how the integers solved subtraction's problem — we invent the smallest number system that contains AND lets division (by anything nonzero) close up. That system is .
The rationals, defined cleanly
A rational number is anything expressible as with and . The set:
The letter stands for quotient. Every integer sits inside as , so we did not lose anything — we strictly extended.
The same fraction wears many faces
The expressions , , all name the same rational number. The rule is: for any nonzero . A fraction is in lowest terms when — you have stripped every common factor.
(Set A to 2/4 and B to 1/2 in the widget. The bars look identical, because they ARE identical — same rational, two faces. Now set A to 3/6 and see another face of the same number.)
The four arithmetic operations
Addition. . Find a common denominator first, then add numerators.
Multiplication. . Numerators times numerators, denominators times denominators.
Division. . Dividing by a fraction is multiplying by its reciprocal. (You will see why in the next section.)
Decimal expansions reveal the rationals
Every rational number has a decimal expansion that either terminates (like ) or eventually repeats (like or ). This is exactly the property that distinguishes rationals from irrationals — numbers like whose decimal never terminates and never settles into a pattern.
Try it
- Before touching the widget: between and , which is bigger? Now set the sliders and confirm with cross-multiplication: compare to .
- Compute using a common denominator. Predict the decimal value before checking.
- Find three different fraction faces of that all reduce to the same lowest-terms form.
- Convert to a fraction. (Hint: let , multiply by 100, subtract .)
Pause: every integer is a rational number, but not every rational is an integer. Can you name three rationals that are NOT integers? Can you name a real number that is not rational?
Try it in code
A trap to watch for
The most common beginner error is writing . This is wrong. Try : the correct answer is , but the buggy rule gives . The reason fractions do not add "component-wise" is the same reason you cannot add "3 apples + 4 oranges" without converting to a common unit. The fix: always find a common denominator first.
What you now know
The rationals are the smallest extension of in which you can divide by any nonzero number. They share the four laws of the integers AND add a new one: every nonzero rational has a multiplicative inverse. That last property is so important it gets its own section. That is where we are headed next.
Quick check
References
- Lang, S. (1971). Basic Mathematics. Springer. Chapter 1, §5 — constructing from via equivalence classes of integer pairs.
- Stewart, I. and Tall, D. (2015). The Foundations of Mathematics, 2nd ed. Oxford. Chapter 5 — the field structure of .
- Spivak, M. (2008). Calculus, 4th ed. Publish or Perish. Chapter 28 — the careful contrast between rationals and reals via decimal expansions.