Revise fast

Cheat sheets

Tables you would otherwise count by hand: factorials, nCr, dice and card probabilities, sums of series, squares and cubes. Every number was computed by a program, not typed.

Factorials 0! to 15!

n! = n × (n-1) x ... x 2 × 1, and 0! = 1. Learn up to 8! by heart; the rest you can read off here. In exams you almost never multiply out a big factorial: cancel first. 10!/8! = 10 × 9 = 90.

nn!Trick to remember
01Defined as 1 (one way to arrange nothing)
11
22
36
42424 hours in a day
5120120 = 5 × 4!
6720720 = degrees in 2 full turns
75,0405040
840,32040,320
93,62,8803,62,880
1036,28,80036,28,800 (about 36 lakh)
113,99,16,800
1247,90,01,600
136,22,70,20,800
1487,17,82,91,200
1513,07,67,43,68,000
  • Cancel before you multiply: 12!/(10! x 2!) = 12 × 11 / 2 = 66.
  • n! = n × (n-1)!, so 9! = 9 × 8! = 9 × 40,320 = 3,62,880.
  • Trailing zeros of n! = floor(n/5) + floor(n/25) + floor(n/125)... e.g. 100! has 20 + 4 = 24 zeros.

Used in: Permutation and Combination · Probability

Combinations nCr: Pascal's triangle up to n = 12

nCr = n! / (r! (n-r)!) = the number of ways to CHOOSE r things from n when order does not matter. Each row of Pascal's triangle is nC0, nC1, ... nCn, and every number is the sum of the two above it.

Symmetry: nCr = nC(n-r). So 12C9 = 12C3 = 220; you never need r above n/2.

nr=0r=1r=2r=3r=4r=5r=6
111
2121
31331
414641
515101051
61615201561
717213535217
8182856705628
919368412612684
1011045120210252210
1111155165330462462
1211266220495792924
  • nC0 = nCn = 1, nC1 = n, nC2 = n(n-1)/2.
  • Quick nCr: top r numbers of n! divided by r!. 10C3 = (10 × 9 × 8)/(3 × 2 × 1) = 120.
  • Sum of a whole row: nC0 + nC1 + ... + nCn = 2n (number of subsets).

Used in: Permutation and Combination · Probability

Permutations nPr (ordered choices)

nPr = n!/(n-r)! = n × (n-1) x ... (r numbers multiplied). Use it when ORDER matters: ranks, seats, passwords, president/secretary. nPr = nCr × r!.

nr=1r=2r=3r=4r=5
11
222
3366
44122424
552060120120
6630120360720
77422108402520
885633616806720
9972504302415120
101090720504030240
  • Order matters? Use P. Order does not matter (team, committee, handshake, group)? Use C.
  • 'Arrange all n' = nPn = n!.

Used in: Permutation and Combination

Counting shortcuts (no listing by hand)

Each line is a pattern that turns a 'count them' question into one calculation.

SituationFormulaExample
Arrange n different things in a rown!5 books: 5! = 120
Arrange with repeats (p alike, q alike...)n! / (p! q! ...)LETTER (T x2, E x2): 6!/(2! 2!) = 180
Around a circle (n people)(n - 1)!6 people: 5! = 120
Necklace / garland (can flip it)(n - 1)! / 27 beads: 6!/2 = 360
Handshakes among n peoplenC2 = n(n-1)/210 people: 45
Diagonals of an n-sided polygonn(n - 3)/2Hexagon: 9
Triangles from n points (no 3 in a line)nC38 points: 56
Straight lines from n points (no 3 in a line)nC28 points: 28
Subsets of a set with n items2n5 items: 32
Non-empty selections2n - 14 fruits: 15
n identical things into r groups (any group may be empty)(n + r - 1)C(r - 1)10 sweets, 3 kids: 12C2 = 66
Same, every group gets at least one(n - 1)C(r - 1)10 sweets, 3 kids: 9C2 = 36
Letters in wrong envelopes (nobody right)D(n): 0, 1, 2, 9, 44, 2654 letters: 9
Rectangles on an m × n grid of squares(m+1)C2 × (n+1)C2Chessboard 8×8: 1296
Squares on an n × n grid12 + 22 + ... + n2Chessboard: 204
Numbers of k digits from n digits, repeats allowednk4-digit PIN: 104 = 10000
  • Two tasks one after another (AND) → multiply. Either one task or the other (OR) → add.
  • 'At least one' → total minus 'none'. Always faster than adding the cases.

Used in: Permutation and Combination · Probability · Counting Figures

Dice: every probability you need

Two dice give 6 × 6 = 36 equally likely outcomes. The number of ways to get a sum s is s - 1 for s up to 7, and 13 - s after that. So 7 is the most likely sum (6 ways).

Sum of two dice23456789101112
Ways (out of 36)12345654321
Probability1/361/181/121/95/361/65/361/91/121/181/36
Event with two diceWaysProbability
Doublet (both the same)61/6
At least one six1111/36
No six at all2525/36
Sum is even181/2
Sum is a prime (2, 3, 5, 7, 11)155/12
Sum is a multiple of 3121/3
Sum greater than 961/6
Product is even273/4
Difference is exactly 1105/18

Symmetric around 10.5: sum s has the same ways as 21 - s.

Sum of three dice3456789101112131415161718
Ways (out of 216)13610152125272725211510631
  • One die: P(any given number) = 1/6, P(even) = 1/2, P(prime: 2, 3, 5) = 1/2.
  • n dice: total outcomes 6n. P(at least one six in n throws) = 1 - (5/6)n.

Used in: Probability

Coins: exactly k heads

n coins give 2n outcomes. The number with exactly k heads is nCk. So P(exactly k heads) = nCk / 2n.

Divide the number in the cell by the outcomes. 4 coins, exactly 2 heads: 6/16 = 3/8.

CoinsOutcomes0 heads1 heads2 heads3 heads4 heads5 heads6 heads
1211
24121
381331
41614641
53215101051
6641615201561
  • P(at least one head with n coins) = 1 - 1/2n.
  • P(all same with n coins) = 2/2n.

Used in: Probability

A deck of 52 cards

4 suits × 13 ranks. Spades and clubs are black, hearts and diamonds are red. Face (court) cards are J, Q, K. Honour cards are A, J, Q, K (some papers include 10: say which you use).

GroupHow manyP(one card drawn)
Any one suit (e.g. hearts)131/4
Red cards261/2
Black cards261/2
Aces41/13
Kings41/13
Face cards (J, Q, K)123/13
Red face cards63/26
Face cards or aces164/13
Number cards 2 to 10369/13
King or heart (13 + 4 - 1)164/13
Red king21/26
Queen of spades11/52

Total ways to draw 2 cards: 52C2 = 1326.

Two cards drawn togetherCountProbability
Both aces4C2 = 61/221
Both red26C2 = 32525/102
Both the same suit4 × 13C2 = 3124/17
One red, one black26 × 26 = 67626/51
Both face cards12C2 = 6611/221

Used in: Probability

Probability rules on one page

Four rules solve almost every placement probability question.

RuleFormulaUse it when
BasicP(E) = favourable / totalAll outcomes equally likely
ComplementP(not E) = 1 - P(E)'At least one', 'not all', 'none'
OR (addition)P(A or B) = P(A) + P(B) - P(A and B)Either can happen; subtract the overlap
OR, mutually exclusiveP(A or B) = P(A) + P(B)They cannot happen together
AND, independentP(A and B) = P(A) × P(B)One does not affect the other (coins, dice, with replacement)
AND, dependentP(A and B) = P(A) × P(B given A)Without replacement: the second draw has one fewer
ConditionalP(A given B) = P(A and B) / P(B)'Given that...', 'if it is known...'
Odds in favour a : bP = a / (a + b)Odds against a : b means P = b / (a + b)
At least one of independent events1 - (1-p1)(1-p2)...'The problem is solved', 'at least one hits'
Exactly k successes in n triesnCk pk (1-p)n-kRepeated independent trials

Used in: Probability

Summations and series

Never add a long list by hand. These formulas give the total at once.

SumFormulan = 10n = 20n = 50n = 100
1 + 2 + ... + nn(n+1)/2552101,2755,050
12 + 22 + ... + n2n(n+1)(2n+1)/63852,87042,9253,38,350
13 + 23 + ... + n3[n(n+1)/2]23,02544,10016,25,6252,55,02,500
First n odd numbers 1 + 3 + 5...n21004002,50010,000
First n even numbers 2 + 4 + 6...n(n+1)1104202,55010,100
Seriesnth termSum of n terms
Arithmetic (AP): a, a+d, a+2d...a + (n-1)dn/2 × (first + last) = n/2 [2a + (n-1)d]
Geometric (GP): a, ar, ar2...a rn-1a (rn - 1)/(r - 1)
Infinite GP with |r| < 1-a / (1 - r)
Average of an AP-(first + last)/2 = the middle term
Number of terms from a to l, step d-(l - a)/d + 1
  • Sum of consecutive numbers = number of terms × average; the average is the middle term.
  • Numbers from 1 to 100 divisible by 3: floor(100/3) = 33.

Used in: Number System · Series · Averages

Squares, cubes and powers

Squares to 30 and cubes to 15 save time on every paper. Powers of 2 show up in coins, subsets and binary questions.

nn2nn2nn2
111112121441
241214422484
391316923529
4161419624576
5251522525625
6361625626676
7491728927729
8641832428784
9811936129841
101002040030900
nn3nn3nn3
118512153,375
289729164,096
327101,000174,913
464111,331185,832
5125121,728196,859
6216132,197208,000
7343142,74421
k2k3k5k
1235
24925
3827125
41681625
5322433,125
66472915,625
71282,18778,125
82566,5613,90,625
951219,683
101,02459,049
112,048
124,096
138,192
1416,384
1532,768
1665,536
  • Square of a number ending in 5: n52 = n(n+1) then 25. 652 = 42|25 = 4225.
  • A perfect square never ends in 2, 3, 7 or 8.
  • Cube roots of perfect cubes: the last digit decides the last digit (2<→8, 3<→7 swap; the rest stay).

Used in: Multiply without long multiplication · Squares, cubes and roots in seconds · Number System

Fraction to percentage table

Know these and most percentage questions become one mental step.

FractionPercentFractionPercent
1/1100%1/119.09%
1/250%1/128.33%
1/333.33%1/137.69%
1/425%1/147.14%
1/520%1/156.67%
1/616.67%1/166.25%
1/714.29%1/175.88%
1/812.5%1/185.56%
1/911.11%1/195.26%
1/1010%1/205%
  • x% of y = y% of x. 16% of 25 = 25% of 16 = 4.
  • A rise of 1/n then a fall back needs a fall of 1/(n+1).

Used in: Percentage · Profit and Loss · Discount

Unit digits of powers (cyclicity)

Only the last digit of the base matters. Find the exponent's remainder when divided by 4 (use 4 when the remainder is 0).

Last digitpower 1power 2power 3power 4Repeats every
000001
111111
224864
339714
446462
555551
666661
779314
884264
991912
  • 795: 95 leaves 3 when divided by 4, so the unit digit is the same as 73 → 3.
  • 0, 1, 5, 6 always end in themselves.

Used in: Number System

Units, conversions and exam-hall tactics

Small conversions cause most silly mistakes. Keep these next to you.

ConvertHow
km/h to m/sx 5/18 (72 km/h = 20 m/s)
m/s to km/hx 18/5 (15 m/s = 54 km/h)
1 hectare10,000 m2
1 litre1000 cm3
1 m31000 litres
1 km1000 m
1 hour3600 seconds
π22/7 (use when a radius is a multiple of 7), else 3.14
Under time pressureHow it saves time
Look at the options firstOften only one option has the right unit digit or size
Unit-digit checkMultiply only the last digits to rule options out
Digit-sum (casting out 9s) checkDigit sums of the question and answer must match
Approximate, then pickRound 49.8% to 50%; pick the option nearest your estimate
Plug the options inFor ages and 'find the number', test the middle option first
Take 100 or the LCMTurns percentages and work problems into whole numbers
Skip and returnSpend at most 90 seconds on a question in the first pass

Used in: Time and Distance · Problems on Trains · Boats and Streams · Mensuration