How do I evaluate something like 3070^2-3069^2?

This looks pretty daunting, but the key to this sort of a problem, which has come up a couple of times in previous PAT tests, is to recognise that this expression is actually the difference of two squares. It can be generalised to the problem of evaluating:

x2-y2

which has as its solution:

x2-y2 = (x+y)(x-y)

so in this case:

30702-30692 = (3070+3069)(3070-3069)=(6139)(1)=6139

SC

Related PAT University answers

All answers ▸

How are you to find 2007^2 − 2006^2 without a calculator?


How do I sketch a function from its equation without using my graphical calculator?


How many trailing zeros are there in 100! (100 factorial)?


If water is trapped between two planes on a train, and the train decelerates at 4ms^-2. What angle does the surface of the water make with the horizontal?