- An arithmetic expression is a meaningful combination of numbers joined by $+,\ -,\ \times,\ \div$, and possibly brackets.
- Every expression has a single value we get by evaluating it; an equality says two expressions have the same value.
- The order of operations matters: do brackets first, then $\times$ and $\div$, then $+$ and $-$ (BODMAS/PEMDAS idea).
- Addition and multiplication are commutative and associative; multiplication distributes over addition.
- Brackets let us group terms and read an expression as "sum of terms" or "product of factors".
- The distributive law $a\times(b+c)=a\times b+a\times c$ is the engine behind clever mental maths.
- Weightage: ~8 marks/year — simplifying expressions, inserting brackets, and word-problem to expression conversion.
1. What is an arithmetic expression?
An arithmetic expression is a combination of numbers connected by the operations $+,\ -,\ \times,\ \div$. Examples: $7+3$, $12-5\times2$, $(4+6)\div2$. Each valid expression stands for a single number — its value. Evaluating $7+3$ gives the value $10$.
A string like $7+\times3$ is not a valid expression because two operation signs sit together with nothing in between. An expression must "make sense" when read left to right.
2. Equalities and inequalities of expressions
When two expressions have the same value, we join them with an equals sign $(=)$ to form an equality. For example, $4+5=10-1$ because both sides equal $9$. If the values differ, we use $>$ or $<$.
(i) $13+2=10+5$ → $15=15$ → True.
(ii) $20-4 > 3\times5$ → $16 > 15$ → True.
(iii) $6\times2=15-2$ → $12=13$ → False.
To compare without full computation, you can sometimes reason: $4\times18$ vs $4\times20$ → same first factor, larger second factor wins, so $4\times18 < 4\times20$.
3. Terms of an expression (the "+ / -" view)
An expression built with $+$ and $-$ can be read as a sum of terms. The sign in front of a number belongs to that term.
Because addition is commutative ($a+b=b+a$) and associative ($(a+b)+c=a+(b+c)$), we may add the terms in any order and grouping. This is why $13-5+8$ can be computed as $(13+8)-5=21-5=16$, which is often faster.
$27+38+73 = (27+73)+38 = 100+38 = 138.$ We grouped the numbers that make a round $100$ first.
4. Brackets and grouping
Brackets show which part of an expression should be treated as a single number and evaluated first. Compare:
- $10-(4+3)=10-7=3$
- $(10-4)+3=6+3=9$
The bracket completely changes the meaning, so brackets are not optional decoration — they carry information about grouping.
"Rohan had ₹$50$. He spent ₹$12$ and ₹$8$." Money left $=50-(12+8)=50-20=30$. The bracket captures the total spent.
5. Order of operations (BODMAS)
When several operations appear without enough brackets, we follow an agreed order so that everyone gets the same value:
Do $\times$ and $\div$ first: $6\times2=12$ and $8\div4=2$. Now $12+12-2 = 22.$
$ (12+6)\times2-8\div4 = 18\times2-2 = 36-2 = 34.$ The bracket changed the answer from $22$ to $34$.
6. The distributive law (the "× over +" view)
Multiplication distributes over addition and subtraction. This is one of the most useful laws in all of arithmetic:
Geometrically, a rectangle of width $a$ and length $(b+c)$ has area $a(b+c)$, which equals the two smaller rectangles $ab$ and $ac$ put together.
$7\times103 = 7\times(100+3)=700+21=721.$ Much faster than long multiplication.
$8\times7+8\times3 = 8\times(7+3)=8\times10=80.$ Reading the law backwards lets us combine terms that share a common factor.
The distributive law also explains the column method of multiplication you already use. When you compute $23\times14$, you are really doing $23\times(10+4)=23\times10+23\times4=230+92=322$. So the "carry and add" routine is the distributive law in disguise — every digit of one number is multiplied by the whole of the other and the partial products are added.
7. Properties of operations — a summary
| Property | Addition | Multiplication |
|---|---|---|
| Commutative | $a+b=b+a$ | $a\times b=b\times a$ |
| Associative | $(a+b)+c=a+(b+c)$ | $(a\times b)\times c=a\times(b\times c)$ |
| Identity | $a+0=a$ | $a\times1=a$ |
Caution: subtraction and division are not commutative or associative: $7-3\neq3-7$ and $(12\div6)\div2\neq12\div(6\div2)$.
8. Inserting brackets to make an equality true
A classic puzzle: place brackets so a given equation becomes true.
Without brackets $8+2\times5=8+10=18$. To get $50$ we need $(8+2)\times5=10\times5=50$. So insert brackets around $8+2$.
$36\div(6+3)=36\div9=4.$ Bracket the $6+3$.
9. Translating words into expressions
Reading word problems and writing the matching expression is a core skill.
| Phrase | Expression |
|---|---|
| $5$ more than $12$ | $12+5$ |
| $8$ less than $20$ | $20-8$ |
| three times $7$, then add $4$ | $3\times7+4$ |
| sum of $9$ and $6$, doubled | $2\times(9+6)$ |
"A box has $6$ rows of $9$ chocolates; $5$ are eaten." Remaining $=6\times9-5=54-5=49$ chocolates.
10. Swapping and changing expressions (number sense)
Ganita Prakash encourages you to predict how the value of an expression changes when you tweak it, without recomputing everything. This trains real number sense.
- Adding to a term: increasing one term of a sum increases the whole sum by the same amount. If $40+27=67$, then $40+30=70$ (we added $3$ more).
- Changing a factor: in a product, multiplying one factor by $2$ doubles the value. Since $12\times5=60$, we get $24\times5=120$.
- Subtracting more: in $a-b$, increasing $b$ decreases the value. As $50-10=40$ becomes $50-15=35$.
- Compensation trick: $49+36 = (50-1)+36 = 86-1 = 85$ — round one term up, then adjust.
You know $23\times4=92$. Without multiplying again, find $23\times8$. Since $8$ is $4$ doubled, the answer doubles: $23\times8=184$. Check: $23\times8=184.$ Correct.
This idea of "how the value moves when a part changes" is exactly what prepares you for algebra in the next chapters, where the parts become letter-numbers.
11. Brackets within brackets
Sometimes an expression has brackets inside brackets. Always work from the innermost bracket outward.
Innermost first: $5+2=7$. Then $12-7=5$. Finally $30-5=25.$
$8-2=6$; $6\times2=12$; $3+12=15$; $2\times15=30.$
Different bracket shapes — round $(\ )$, square $[\ ]$, curly $\{\ \}$ — are just nesting markers; they all mean "do me first".
12. Common mistakes to avoid
- Working strictly left to right and ignoring that $\times,\div$ come before $+,-$.
- Forgetting that the sign in front of a number is part of that term.
- Treating subtraction/division as commutative — they are not.
- Dropping brackets when translating "doubled the sum" type phrases.
- Mis-applying the distributive law, e.g. writing $a\times(b\times c)=ab\times ac$ (wrong — that is only for $+$).
13. Quick revision checklist
- Expression → one value; equality $=$ same value on both sides.
- Order: Brackets → powers → $\times\div$ (left to right) → $+\,-$ (left to right).
- $+$ and $\times$ are commutative & associative; $-$ and $\div$ are not.
- Distributive: $a(b+c)=ab+ac$ — use both directions.
- Brackets change meaning; read terms with their signs.
- $30$
- $18$
- $22$
- $13$
- $18$
- $30$
- $22$
- $13$
- $7+3=2\times6$
- $5\times4=18+2$
- $9-2=3\times3$
- $12\div2=2\times4$
- $9\times10+2$
- $9\times10+9\times2$
- $9+10\times2$
- $9\times10\times2$
- $15,7,4$
- $+15,-7,+4$
- $+15,+7,+4$
- $-15,-7,-4$
- $2475$
- $2500$
- $2525$
- $2450$
- Addition
- Multiplication
- Subtraction
- None of these
- $(4+6)\div2$
- $4+(6\div2)$
- $(4+6\div2)$
- no brackets needed
- $6$
- $34$
- $26$
- $2$
- $2\times8+5$
- $2\times(8+5)$
- $8+2\times5$
- $2+8+5$
- $8\times10$
- $8\times21$
- $16\times10$
- $8+10$
- $16$
- $4$
- $48$
- $1$
- $5+\times3$
- $7-(2+3)$
- $\times8\div2$
- $4++6$
- $0$
- $1$
- $a$
- $a+1$
- $80$
- $60$
- $980$
- $70$
Book a free demo class