🧮 Algebra
📥Substitution
Hand the letter a concrete number and follow the rules step by step — a formula turns into an answer.
A formula is a machine waiting to start, and letters are its empty input slots. Variables and the Function Machine showed that is written once yet handles every input. Feeding in a concrete number and computing the result is called substitution.
Substitution: swap letters for numbers
Take the expression . When and , what is it worth? Three steps:
- Copy the expression: ;
- Swap in the values: ;
- Compute in order: .
Copy first, swap second, never skipping a step — that is the steadiest rhythm for substitution. Mental short-cuts drop terms; forgetting the inside is the classic slip.
Order of operations still applies
Letters change nothing about the order of operations: powers first, then multiplication and division, then addition and subtraction.
Take with :
- Correct: ;
- Wrong: first , then square to get 36.
means — the square grabs only the , not the 2 in front.
Two high-frequency errors
- means . If , then — not the two-digit number "2a", and not .
- Squaring a negative number needs brackets: , but without brackets means . One missing pair of brackets flips the sign.
Formulas from real life
Formulas are everywhere, and substitution is how you use them. The circumference of a circle (the star of Circles) is
For a circle of radius 3 cm, taking :
so the circumference is about 18.8 cm. What if the radius doubles? At you get — doubled too. Substitute a few more values and the formula starts feeling like an old friend.
The Substitution Machine
A secret rule hides inside the machine. Feed it numbers and guess the rule!
Output
—
In Variables and the Function Machine you used this machine to guess the rule backwards. Flip the game around: first evaluate the rule in your head, then feed the machine and compare. When your mental substitution matches the machine every time, the skill has truly landed.
Check yourself
Quick quiz
1. With a=3 and b=4, what is a²+2b?
2. With x=4, what is 2x²?
3. What is (-3)²?