S = 1 3 3 + 2 3 3 + 3 3 3 + 4 3 3 + ⋯ + 8 9 3 3
What is the units digit of S ?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Good solution based on the observation of the possibilities
We can also see that pairs of even numbers as well as pairs of odd numbers have an even sum, but there is one more odd number which doesn't have a pair, so the solution must be odd, as John said. This might be useful for people who don't know what mod means.
1^33+89^33 = (1+89) (89^32-89^31+89^30-...-1) = 90 .... ends with zero
2^33+88^33 = .. also ends with zero
...
remains 45^33 ending 5
Smart. Reducing the solution space to one
Simpler solution :
S ≡ 1 3 3 + 2 3 3 + 3 3 3 + ⋯ + 4 4 3 3 + 4 5 3 3 + 4 6 3 3 + ⋯ + 8 7 3 3 + 8 8 3 3 + 8 9 3 3 (mod 10) Pair the respective end terms together. ≡ 1 3 3 + 8 9 3 3 + 2 3 3 + 8 8 3 3 + 3 3 3 + 8 7 3 3 + ⋯ + 4 4 3 3 + 4 6 3 3 + 4 5 3 3 (mod 10) ≡ ( 1 + 8 9 ) k = 0 ∑ 3 2 ( − 1 ) k 1 k 8 9 3 2 − k + ( 2 + 8 8 ) k = 0 ∑ 3 2 ( − 1 ) k 2 k 8 8 3 2 − k + ( 3 + 8 7 ) k = 0 ∑ 3 2 ( − 1 ) k 3 k 8 7 3 2 − k + ⋯ + ( 4 4 + 4 6 ) k = 0 ∑ 3 2 ( − 1 ) k 4 4 k 4 6 3 2 − k + 4 5 3 3 (mod 10) ≡ 9 0 k = 0 ∑ 3 2 ( − 1 ) k 1 k 8 9 3 2 − k + 9 0 k = 0 ∑ 3 2 ( − 1 ) k 2 k 8 8 3 2 − k + 9 0 k = 0 ∑ 3 2 ( − 1 ) k 3 k 8 7 3 2 − k + ⋯ + 9 0 k = 0 ∑ 3 2 ( − 1 ) k 4 4 k 4 6 3 2 − k + 4 5 3 3 (mod 10) ≡ 0 + 4 5 3 3 (mod 10) ≡ 5 (mod 10)
Previous solution:
We need to find S m o d 1 0 . Then
S ≡ k = 1 ∑ 8 9 k 3 3 (mod 10) ≡ j = 0 ∑ 8 k = 1 ∑ 9 ( 1 0 j + k ) 3 3 (mod 10) ≡ 9 k = 1 ∑ 9 k 3 3 (mod 10) = − k = 1 ∑ 9 k 3 3 (mod 10) ≡ − ( 1 3 3 + 2 3 3 + 3 3 3 + 4 3 3 + 5 3 3 + 6 3 3 + 7 3 3 + 8 3 3 + 9 3 3 ) (mod 10) ≡ − ( ( 1 3 3 + 9 3 3 ) + ( 2 3 3 + 8 3 3 ) + ( 3 3 3 + 7 3 3 ) + 4 3 3 + 6 3 3 ) + 5 3 3 ) (mod 10) See note. ≡ − ( ( 1 + 9 ) k = 0 ∑ 3 2 ( − 1 ) k 1 3 2 − k 9 k + ( 2 + 8 ) k = 0 ∑ 3 2 ( − 1 ) k 2 3 2 − k 8 k + ( 3 + 7 ) k = 0 ∑ 3 2 ( − 1 ) k 3 3 2 − k 7 k + ( 4 + 6 ) k = 0 ∑ 3 2 ( − 1 ) k 4 3 2 − k 6 k + 5 3 3 ) (mod 10) ≡ − ( 1 0 k = 0 ∑ 3 2 ( − 1 ) k 1 3 2 − k 9 k + 1 0 k = 0 ∑ 3 2 ( − 1 ) k 2 3 2 − k 8 k + 1 0 k = 0 ∑ 3 2 ( − 1 ) k 3 3 2 − k 7 k + 1 0 k = 0 ∑ 3 2 ( − 1 ) k 4 3 2 − k 6 k + 5 3 3 ) (mod 10) ≡ − 5 3 3 ≡ − 5 ≡ 5 (mod 10)
Note : ( a n + b n ) = ( a + b ) k = 0 ∑ n − 1 ( − 1 ) k a n − 1 − k b k , where n is an odd positive integer.
Sir how come 9 comes from (10j + k)^33
Log in to reply
You are right. Not necessary.
No, 9 should be there because of ∑ j = 0 8 .
I think you missed a 9 when you deleted the j sum
Log in to reply
You are right. I deleted it because of @Dark Lord 's comment.
The 9 appears because the 10j is 0 mod 10, then the sum from j=0 to 8 can be replaced by 9*. Fortunately, the answer turns out to be 5, so the result would be the same if you forgot the 9, but you don't know that yet.
By the way, 3 lines before the end you can write 1^33+9^33=1^33+(-1)^33=0 and 2^33+8^33=2^33+(-2)^33=0 ... Leaving -5^33 which is 5 since all powers of 5 are 5 mod 10
Log in to reply
It is not so if − 6 3 3 ≡ − 6 ≡ 4 (mod 10) . I was just want to be more thorough and show that − 5 ≡ 5 (mod 10) .
Log in to reply
You missed my point. (I'm talking about your previous solution) You don't need to use that note that you wrote.
− ( ( 1 3 3 + 9 3 3 ) + ( 2 3 3 + 8 3 3 ) + ( 3 3 3 + 7 3 3 ) + ( 4 3 3 + 6 3 3 ) + 5 3 3 ) mod 10
≡ − ( ( 1 3 3 + ( − 1 ) 3 3 ) + ( 2 3 3 + ( − 2 ) 3 3 ) + ( 3 3 3 + ( − 3 ) 3 3 ) + ( 4 3 3 + ( − 4 ) 3 3 ) + 5 3 3 )
≡ − ( 0 + 0 + 0 + 0 + 5 3 3 )
≡ − 5 3 3
≡ − 5
≡ 5
Log in to reply
@Davy Ker – Oh, good solution. I don't see it when it was not in LaTex.
Too long for a simple cas!
S = 1 3 3 + 2 3 3 + 3 3 3 + 4 3 3 + ⋯ + 8 9 3 3 To determine the last digit the sum above we just need to determine the last digit of each number from 1 to 9 and note that 3 3 ≡ 1 m o d ( 4 ) . Therefore, 1 3 3 + 2 3 3 + 3 3 3 + ⋯ + 9 3 3 = 1 1 + 2 1 + 3 1 + ⋯ + 9 1 = 4 5 1 3 3 + 2 3 3 + 3 3 3 + ⋯ + 8 9 3 3 = 1 1 + 2 1 + 3 1 + ⋯ + 8 9 1 = 4 0 0 5 Therefore, the answer is 5 .
For similar problem click here
Nice. I like it.
Exactly my approach
I used the same method, but for all numbers ending in 4 and 9, don't you have to consider 33 mod (2) instead of 33 mod (4)? It yields the same result, but I think only coincidentally.
Log in to reply
It's not coincidence, since 4 = 2+2. For numbers ending in 4 or 9, you go thru their cycle twice for each multiple of 4, but it will always be the same answer. Think of the 9 cycle as a 4-cycle (9,1,9,1), instead of as a 2-cycle (9,1) gone thru twice.
Why mod 4? Why does this work?
Log in to reply
Because every number (from 1 to 9) has a period of 4 or 2 or 1. Therefore $1^{4k+1} = 1^1; 2^{4k +1} = 2^1 \dots $ and so on.
Because Euler phi function of 10 is 4
To expound on Matt McNabb's and Ciao, Sono Un Pino's answers: Because the Euler phi function of 10 is 4, Euler's theorem tells us: when a and n are coprime, then a^[phi(n)] is congruent to 1, mod n. So, if a isn't divisible by 2 or 5, a^4[=phi(10)] is congruent to 1 mod 10. Also, by factoring, we can see that (2b)^4, as long as b isn't divisible by 5, is congruent to 2^4, mod 10, or 6.
This then tells us, that c^(4k+1) is congruent to c^1, or c, since 5 (or 0) to any positive power, mod 10, equals itself. Since 33 = 4 times 8 plus 1....
generally, with no need of the ϕ function, if you take the sequence a n = x n , then the last digit repeats with a cycle of 1 if the last digit of x is 0 , 1 , 5 , 6 , a cycle of 2 if it is 4 , 9 and a cycle of 4 for 2 , 3 , 7 , 8 . This means that if n ≡ 1 ( m o d 4 ) then it's going to be the first digit of the cycle for any last digit (i.e., it's always going to be the digit itself)
Work modulo 10; then the answer is 9 × ( 1 3 3 + 2 3 3 + ⋯ + 9 3 3 ) . But 9 ≡ − 1 ( m o d 1 0 ) , 8 ≡ − 2 ( m o d 1 0 ) , etc., so we can rearrange in pairs: 9 × ( 1 3 3 + ( − 1 ) 3 3 + … ) . Since 33 is odd, ( − n ) 3 3 = − n 3 3 and the pairs all cancel. The only unpaired number is 5, so the answer is 9 × 5 3 3 ( m o d 1 0 ) , which must be 5 since all powers and odd multiples of 5 end in 5.
What I did, and defiantly seems the best and easiest method. Needs more upvotes.
This is a very elegant solution. I like it.
I wish this solution was higher up. Simpler than the other solutions, and what I did.
The most simple and elegant way to solve this problem. I also dit the same.
1 3 3 = 1 so it's last digit is 1 itself.
If we calculate the powers of 2 , we get 2 , 4 , 8 , 1 6 , 3 2 . . . , So after every 4 terms the unit place digits are repeated.
So 2 3 3 ends with the digit 2 because remainder of 4 3 3 = 1 .
If we calculate the powers of 3 , we get 3 , 9 , 2 7 , 8 1 , 2 4 3 . . . , So after every 4 terms the unit place digits are repeated.
So 3 3 3 ends with the digit 3 because remainder of 4 3 3 = 1 .
It will hence be same for all other numbers till 9 . The numbers are repeated periodically with a period of 4 .
The conclusion I want to make is that " For the power of 33, all the numbers have the same unit place digit as the number itself "
Our work is simple after all the hustle, just add ( 1 + 2 + 3 + . . . + 9 ) which is equal to 4 5 whose unit place is occupied by 5
To be precise, the period is 1 (for 0, 1, 5, 6), 2 (for 4, 9) or 4 (for 2, 3, 7, 8). But it's just a minor observation, as 4 is a multiple of both 1 and 2.
We have to use an Euler's equation to solve this.
while
(
a
,
n
)
=
1
so, we can get that
(it is possible because even if a's unit digit is 0, it is right)
1 2 3 4 5 6 7 |
|
1 |
|
For this problem I put it to mod 2:
First thing I noticed is that every 4 consecutive numbers is 0 mod 2
Also raising powers change nothing mod 2
S = 1 3 3 + 2 3 3 + 3 3 3 + … + 8 9 3 3 ⇒ S ≡ 1 + 2 + 3 + … + 8 0 + 8 9 ( m o d 2 )
Then I will make it into pairs of four consecutive numbers and I'll have one remaining number unpaired
S ≡ 8 9 ( m o d 2 )
S ≡ 1 ( m o d 2 )
So I immediately see that there is only one choice that goes with condition
S ≡ 5 ( m o d 1 0 )
Fact 1: Only the unit digit of those numbers in the sum does matter.
Fact 2: A interesting result is that n k m o d 1 0 = n k m o d 4 m o d 1 0 .
With that on mind we can notice that it ends up being equivalent to :
[ 1 + 2 + 3 + 4 + ⋯ + 8 9 ] m o d 1 0
Also, there's a very known formula for the partial sum between naturals wich lead us to :
( 2 8 9 × 9 0 ) m o d 1 0
Turns out that ( 2 8 9 × 9 0 ) m o d 1 0 is 5
I think "Fact 2" is wrong as there should be n mod 4, not n mod 5. example: 2^33 mod 10 is 2, and not 8
"Only the unit digit of those numbers in the sum does matter."
I want to help you out with that sentence. It's a bit broken and sounds funny. You probably want to say:
"Only the unit digit matters"
Any power which is in form of 4N+1 give same unit digit as unit digit of base number. 32=4N+1 1^32==1 unit digit 2^32==2 unit digit 3^32==3 unit digit And so on.. adding 1+2+3+4+5+6+7+8+9=0+5=5 for 1 to 10 1+2+3+4+5+6+7+7+9=0+5=5 for 11 to 20 So 1 to 89=> 5+5+5+5+5+5+5+5+5=0+5 =0+5 =5 unit digit.
The only parts of the problem that effect the outcome of the problem, the units digits, are the units digits of each of the original numbers. All powers have cyclings of units digits since all of them have a units digit multiply itself. For example, for powers of 2, it will be 2,4,8,16,32,64,128,256, etc. Extracting the units digits from the cycle, and you get standard cycling of units digits for any powers of any number ending in a certain digit. Thus, all we have to examine is the cycles of all the units. For all the powers of numbers ending in all the ten digits, the cycles are the following (By the way, determining these cycles amounts to continuously multiply each power one by one, determining the units digit, ignoring all the other digits, and multiply the power by the next unit digit, and so on.):
0: 0 (numbers ending in 0 can be ignored because they always end up with 0 units digits, so they don't contribute to the final units digit)
1: 1 (Period = 1)
2: 2 -> 4 -> 8 -> 6 -> 2 (Period = 4)
3: 3 -> 9 -> 7 -> 1 -> 3 (Period = 4)
4: 4 -> 6 -> 4 (Period = 2)
5: 5 (period =1)
6: 6 (period = 1)
7: 7 -> 9 -> 3 -> 1 -> 7 (Period = 4)
8: 8 -> 4 -> 2 -> 6 -> 8 (Period = 4)
9: 9 -> 1 -> 9 (Period = 2)
Now, there are 9 of each digit in the sum of all those powers of 33, and also, the units digit outcome for each units digit number is determined by the 33rd number in the cycle. This can be done with the period of the cycle by using mod of the period:
33 mod 4 =1
33 mod 2 = 1
33 mod 1 = 1
Thus, all the units digits appear as themselves. In other words, the final units digit is the units digit of this outcome:
9 * (1+2+3+4+5+6+7+8+9)
Using outer pairs, the sum becomes a bunch of tens, besides the remaining 5. 9 times 5 is 45, which ends in 5, so the answer is 5.
Since an odd number to an integer power is odd, and an even number to an integer is even, you can deduce if S is even or odd. Since there is an odd number of odd terms (45), all of the odd terms sum up to an odd number. An odd number plus any number of even numbers is still an odd number, so therefore S must be an odd number. Since 5 is the only odd number presented and one of these answers provided must be correct, 5 must the correct answer.
Easiest solution ever: There is only one odd number in the multiple choice options, "5." If you can prove the solution is odd, that is your answer.
Adding an odd number to an even number results in an odd number.
Multiples of odd numbers with odd numbers are also odd.
Adding an odd number to an odd number results in and even number.
Therefore, if you have an odd number of odd n^33 values being added together, the result is odd. 2 8 8 + 1 = 4 5 odd values being added.
Therefore the solution is odd.
Therefore, the solution is 5.
Powers of the last digits of base 10 numbers cycle through no more than four iterations... that is:
1 1 ≡ 1 5 ≡ 1 9 ≡ . . . ≡ 1 3 3 ≡ 1 (mod 10).
2 1 ≡ 2 5 ≡ 2 9 ≡ . . . ≡ 2 3 3 ≡ 2 (mod 10).
3 1 ≡ 3 5 ≡ 3 9 ≡ . . . ≡ 3 3 3 ≡ 3 (mod 10).
...
9 1 ≡ 9 5 ≡ 9 9 ≡ . . . ≡ 9 3 3 ≡ 9 (mod 10).
The last digit of numbers 1 through 10 is the last digit of 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 0, which is 5. Multiply this by nine for 1 through 89, and the last digit is 5.
At First notice that the first and the last and the second and the forelast (and so on) summand always adds up to 9 0 3 3 so that you get 4 4 ∗ 9 0 3 3 + 4 5 3 3 which is equal to 4 0 0 5 3 3 . You can now split it into 4 0 0 0 3 3 + 5 3 3 . 4 0 0 0 raised to any power won't effect the units digit, 5 raised to a power always leaves a 5 as the units digit with means that the units digit of S is 5
Since the unit digit of 1^33 is 1. And for 2^33 is 2 as 2 has a repeating unit digit in powers ex 2^1=2,2^2=4,2^3=8,2^4=16,2^5=32 we see that it has repetition of unit digit after every 4 powers therefore unit digit of 2^33 is 2 similarly 3 is 3 for 4^33 is 4 till 89^33 is 89 this implies the unit digit is 1+2+3.....+89 which = 4005 whose unit digit is 5.
1 raised to any power is 1. Powers of 2 end in either 2, 4, 8 or 6, meaning that the 33rd power of 2 ends in 2. Powers of 3 end in 3, 9, 7 or 1, so the 33rd power of 3 ends in 3. Powers of four end in 4 or 6, so the 33rd power of four ends in 4. Five and six are both automorphic numbers - their powers always end in five (for five) and six (for six). Powers of 7 end in 7, 9, 3 and 1, so again the 33rd power of 7 ends in 7. Powers of 8 end in 8, 4, 2 and 6, again four end numbers, meaning that the 33rd power of eight ends in eight. Powers of nine end in 9 or 1, so the 33rd power of 9 ends in 9. Extending this through the rest of the numbers, the last digit of each 33rd power is the last digit of the number itself. Thus, the last digit of the sum of these powers will be the last digit of the sum the numbers 1 to 89 inclusive, which using the formula that Gauss famously derived as a schoolboy is 4005. Thus the answer is 5. Incidentally it took much longer to write this explanation than it did to get the answer, for which I did not even require paper and pencil, let alone anything more sophisticated.
1^33+2^33+3^33+......+89^33= To find the last digit of sum ,add the last digit of each no. For ex. 1^33=1 2^33=2^(32+1)=2^32×2=last digit will be(2) Bcaus 2^1=2 2^2=4 2^3=8 2^4=16 last digit(6) 2^5=32 last digit(2) So. 2^4n×2=last digit(2) Similarily for 3^4n=last digit(1) So. 3^32×3=last digit(3) 1^33+2^33+3^33+.......+89^33=1+2+3+4+...+89 =(89×90)/2 USING(N(N+1))/2 =4005(sum of last digits) =last digit(5)
Here's an approach by which you can solve the problem in your head!
First we notice that only the units digits matter, so we need only consider the terms 1 3 3 + ⋯ + 9 3 3 , and each term appears nine times. For each of the digits 1 - 9, we also must see that the units digit repeats every four multiplications. To demonstrate this, I've listed out the units digits of the first five powers of each of the digits 1 - 9 here:
{1, 1, 1, 1, 1} {2, 4, 8, 6, 2} {3 9 7 1 3} {4 6 4 6 4} {5 5 5 5 5} {6 6 6 6 6} {7 9 3 1 7} {8 4 2 6 8} {9 1 9 1 9}. Notice that the units digit of N 5 always equals N 1 .
Since the units digits repeat every four multiplications, the units digit of N 3 3 is just N for any digit N . Now we just have to sum our terms (only keeping track of the units digit of the sum.) The 1s and 9s together give 0, the 2s and 8s together give 0, the 3s and 7s together give 0, and the 4s and 6s together give 0. So the only terms contributing to the final units digit are the nine 5s, which total 45, making our final units digit 5 .
Since we are dealing with m o d 1 0 , we simplify the problem by taking only the last digit and preserving the power.
e.g. 3 4 3 3 ≡ 4 3 3 m o d 1 0 ; 4 8 3 3 ≡ ( − 2 ) 3 3 m o d 1 0 .
Everything simplifies to
1 3 3 + 2 3 3 + ⋯ + 8 9 3 3 ≡ 9 ( 1 3 3 + 2 3 3 + 3 3 3 + 4 3 3 + 5 3 3 − 4 3 3 − 3 3 3 − 2 3 3 − 1 3 3 ) m o d 1 0
≡ 9 ( 5 3 3 ) m o d 1 0
Note that 5 3 3 ≡ 5 m o d 1 0
So 9 ( 5 3 3 ) ≡ 4 5 ≡ 5 m o d 1 0
So the answer is 5 .
L e t X a n d n b e a n y n a t u r a l n u m b e r . T h e n X n i s o d d i f X i s o d d , a n d e v e n i f X i s e v e n . I n G i v e n s e r i e s t h e t e r m s a l t e r n a t e o d d e v e n o d d . . . I n s u c h a s e r i e s , i f f i r s t a n d l a s t t e r m s a r e B O T H o f t h e s a m e t y p e , t h e s e r i e s w i l l h a v e o d d n u m b e r o f o d d t e r m s . ∴ t h e S i s O D D . 1 3 3 , a n d 8 9 3 3 b o t h a r e o d d , s o S i s o d d . ⟹ u n i t d i g i t i s o d d . I f t h e g i v e n l i s t c o n t a i n s t h e u n i t d i g i t o f S , i t s t h e o n l y o d d d i g i t 5 . .\
take the sum m o d 9 0 we get 4 5 3 3 m o d 9 0 Applying CRT with 9 and 10 we get 4 5 ≡ 0 m o d 9 and 4 5 ≡ 5 m o d 1 0 so that our answer is 4 5 3 3 m o d 9 0 ≡ 5 m o d 9 0 .
Using a pattern 1^33: last digit must be 1, 2^33: pattern goes as 2,4,8,6 then back to 2, so 4 numbers per cycle, so 2^33's last digit is 2 3^33: using the same process you get 3 4^33: last digit 4 5^33: Has to be 5 regardless of any positive integer power so it is 5 6^33: same pattern as 5, therefore final digit is 6 7^33: pattern goes as 7,9,3,1,7 so the last is 7 8^33: pattern for last digit goes as 8,4,2,6,8 there the last digit is 8 9^33: pattern is 9,1,9,1, since the power is odd, last digit is 9 Any base that is a multiple of 10 is automatically 0 so these have no effect. Since only the last digit is the same for any base, eg. 1^33, 11^33, 21^33,31^33, etc. all have the same last digit therefore, you add all the last digits which is 45, times by 9 which is 405, and the digit is 5. Voila.
We are looking for S m o d 1 0 . Using the Chinese Remainder Theorem, we will instead consider S m o d 2 and S m o d 5 and reconstruct the solution. Clearly, S ≡ 1 m o d 2 , so consider S m o d 5 .
We see that if 5 divides a , then a 3 3 ≡ 0 m o d 5 . If 5 does not divide a , then a 3 3 ≡ a ( a 8 ) ϕ ( 5 ) ≡ a m o d 5 . Therefore,
1 3 3 + 2 3 3 + 3 3 3 + 4 3 3 + 5 3 3 + … + 8 9 3 3 ≡ 1 8 ( 1 3 3 + 2 3 3 + 3 3 3 + 4 3 3 ) ≡ 3 ( 1 + 2 + 3 + 4 ) ≡ 0 m o d 5
The only digit x (integer from 0 to 9 ) satisfying x ≡ 1 m o d 2 and x ≡ 0 m o d 5 is x = 5 . Thus, S ≡ 5 m o d 1 0 .
The last digit of this sum is the same as that of the sum where we only used the last digits of each of the terms (for example, the 2 1 3 3 term serves the same purpose as a 1 3 3 term, so we can just replace it with that).
Therefore, S has the same last digit as 9 ∑ k = 1 9 k 3 3 .
For every integer k between 1 and 9 (inclusive), the last digit of k 5 is k . Because k 3 3 = ( k 2 ⋅ 5 + 1 ) 3 = ( k 5 ⋅ k 5 ⋅ k ) 3 , which has the same last digit (by the factoid just stated) as ( k ⋅ k ⋅ k ) 3 = ( k 3 ) 3 = k 9 = k 5 ⋅ k 4 , which has the same last digit as k ⋅ k 4 = k 5 , which has the same last digit as k , our sum S has the same last digit as 9 ∑ k = 1 9 k = 9 ⋅ 4 5 , which has last digit 5
Problem Loading...
Note Loading...
Set Loading...
To solve this problem, we need to find 9 ( 1 3 3 + 2 3 3 + 3 3 3 + 4 3 3 + 5 3 3 + 6 3 3 + 7 3 3 + 8 3 3 + 9 3 3 ) (mod 10) . There are 5 odd numbers and 4 even numbers in the sum which means that the sum is odd. 9 times the sum will also be odd therefore 5 is the only possible answer from the choices given.