Hi Dwija01,Good instinct to look for a shortcut, but this is one spot where the last-digit method hits a wall, so let me show you exactly why.
First, one small arithmetic fix:
2^8 = 256, so it ends in
6, not
8. And
3^8 = 6561 ends in
1. So the units digit of n is
11 -
6 =
5, meaning n ends in
5.
Here's the real problem, though. Knowing that n ends in
5 tells you only one thing: n is divisible by
5. The units digit can reveal divisibility by
2 and
5 - and nothing else. It cannot tell you whether
7,
13,
65, or
97 divide n. That's the exact information this question needs, and the last digit simply doesn't carry it.
That's why you got stuck: the method ran out of road, not you.
Why the units digit can't decideLook at two numbers that both end in
5:
-
35 ends in
5, and it
is divisible by
7.
-
25 ends in
5, and it is
not divisible by
7.
Same last digit, opposite answers for
7. So a units digit of
5 can never confirm or rule out a factor like
7 - which is the whole question here (
35 =
5 x
7).
What actually worksBecause you can't compute
3^8 -
2^8 by hand cleanly, treat it as
difference of squares instead:
- n =
3^8 -
2^8 = (
3^4 +
2^4)(
3^4 -
2^4) = (
97)(
65) =
5 x
13 x
97Now the factors are staring at you. There's no
7 anywhere in n, so
35 =
5 x
7 can't divide it - answer
C.
So the takeaway: reach for factoring (difference of squares) on these, and save the units-digit trick for questions that ask about the last digit itself.
Answer: CDwija01
Hi,
I approached this with the last digit method and got stuck. Is this possible?
Can I figure this out by looking at the last digits?
3^8 ends with 1
2^8 ends with 8
The number would end in 11-8=3
After this, I wasn't able to solve.
PS: How to identify which condect is applicable for that particular question? I read your math chapters for factors and remainders. I clearly understand the concepts but find it difficult to figure out which way to solve questions.