To tackle this, let's start with looking at all the possibilities for our X and Y:
2 | 3 | 5 | 7 | 11 | 13 | 17 | 19
Also, we don't know for sure that the variables are different, so potentially X and Y can be the same number.
To solve the task, we need to find the last digit of the product XY - and for that, we need to at least know the last digits of both X and Y.
As the general task doesn't leave us much more work to do, let's look at the additional conditions:
Quote:
(1) The units digit \(x∗y+y\) is a prime number
Let's transform the formula into looking like a product:
\(y*(x+1)\)
Now, we know that two numbers - one prime, and another 'prime+1' - have a product that ends in: 2 | 3 | 5 | 7
Let's look into some options of which numbers we can multiply to get the results with these endings:
_2: \( 6*2 | 3*4 | 6*7 | 11*2\)
_3: \(11*3 | 7*9\)
_5: \(5*\)
any odd number_7: \(3*9 | 11*7\)
Okay, so let's see, what pairs of PRIME * (PRIME+1) (or simply \((X+1)*Y\)) fit some of these products:
\(6*2 = (5+1)*2\\
3*4 = (2+1)*3\\
6*7 = (5+1)*7\\
11*3 = (2+1)*11\) etc.
We already have quite a few different options for \(X*Y\), so unfortunately by itself
Condition 1 is INSUFFICIENT.Quote:
(2) The Units digits of \(x^{4z+4}−y\) is 5 (z is a positive integer)
So this seems a bit more difficult, but let's change the power formula into pure X to the power of Z:
\(x^{4z+4} = (x^{4})^{z+1}\)
So now, we have \((x^{4})^{z+1} = Y + 5\)
Here I suggest we do a bit of good ol' picking the number: let's look at all the possible endings of the numbers for \(PRIME + 5\), as well as for \(PRIME^4\) from our initial list (for now, not thinking about the value of Z). Also, we don't need to look at repeating endings (13 as 3 and 17 as 7), so we exclude them from the list:
X/Y | Y+5 | X^4:
...2 | ....7 | _
6...3 | ....8 | _1
...5 | .._0 | _5
...7 | .._2 | _1
..11 | _
6 | _1
..19 | _4 | _1
Interestingly, when you put any of the numbers under \(x^{4}\) into any further fraction (for instance, \(Z\) or \(Z+1\)) - it doesn't matter, because the last digit remains as 1, 5 or 6 regardless of the power.
Now, the only ending of Y+5 in this case which aligns with any of the possible powers of X is \(6\), which we get when \(Y = 11\), and \(X=2\).
Therefore, those two are the only possible values, and the product \(X*Y = 22\), so the last digit is
2. Therefore,
Condition 2 by itself is SUFFICIENT.Answer option B.