AMC // 10
PAPERS>AMC 10A 2019
// PAPER // AMC 10A 2019

AMC 10A 2019

2019-02-07

View the original on AoPS Wiki ↑

// PROBLEM 1 · ANSWER: C
// PROBLEM

What is the value of (201+520)1×5(2^0 - 1 + 5^2 - 0)^{-1} \times 5?

// SOLUTION

Evaluate the parenthesised expression first:

201+520=11+250=25.2^0 - 1 + 5^2 - 0 = 1 - 1 + 25 - 0 = 25.

Then (25)1×5=125×5=15(25)^{-1} \times 5 = \dfrac{1}{25} \times 5 = \dfrac{1}{5}.

Answer: C.

// PROBLEM 2 · ANSWER: A
// PROBLEM

What is the hundreds digit of 20!15!20! - 15!?

// SOLUTION

We only need the last four digits of 20!15!20! - 15!.

20!(mod104)20! \pmod{10^4}: 20!20! contains the factors 5,10,15,205, 10, 15, 20 (four multiples of 55) and at least four factors of 22, so 20!20! is divisible by 10410^4. Thus 20!0(mod104)20! \equiv 0 \pmod{10^4}.

15!(mod104)15! \pmod{10^4}: 15!15! has three factors of 55 (from 5,10,155, 10, 15) and many factors of 22, so it ends in exactly three zeros. Computing 15!=1,307,674,368,00015! = 1{,}307{,}674{,}368{,}000, the last four digits are 80008000.

So 20!15!0800080002000(mod104)20! - 15! \equiv 0 - 8000 \equiv -8000 \equiv 2000 \pmod{10^4}.

The last four digits of 20!15!20! - 15! are 2000\ldots 2000. The hundreds digit (third from the right) is 0\boxed{0}.

Answer: A.

// PROBLEM 3 · ANSWER: D
// PROBLEM

Ana and Bonita were born on the same date in different years, nn years apart. Last year Ana was 55 times as old as Bonita. This year Ana's age is the square of Bonita's age. What is nn?

// SOLUTION

Let AA and BB be Ana's and Bonita's ages this year.

From "this year Ana's age is the square of Bonita's age": A=B2A = B^2.

From "last year Ana was 55 times as old as Bonita": A1=5(B1)A - 1 = 5(B - 1).

Substitute A=B2A = B^2:

B21=5B5    B25B+4=0    (B1)(B4)=0.B^2 - 1 = 5B - 5 \implies B^2 - 5B + 4 = 0 \implies (B - 1)(B - 4) = 0.

So B=1B = 1 or B=4B = 4. If B=1B = 1, then A=1A = 1 and they'd be the same age, contradicting "different years." So B=4B = 4 and A=16A = 16.

Thus n=AB=12n = A - B = 12.

Answer: D.