Question #e980f

1 Answer
Apr 5, 2017

362880
13800

Explanation:

The symbol !! means factorial, which is defined recursively as

n! =n*(n-1)!n!=n(n1)!
0! =10!=1

Then, 9!9!
=9*8!=98!
=9*8*7!=987!
=9*8*7*6!=9876!
=9*8*7*6*5!=98765!
=9*8*7*6*5*4!=987654!
=9*8*7*6*5*4*3!=9876543!
=9*8*7*6*5*4*3*2!=98765432!
=9*8*7*6*5*4*3*2*1!=987654321!
=9*8*7*6*5*4*3*2*1*0!=9876543210!
=9*8*7*6*5*4*3*2*1*1=9876543211
=362880=362880

As seen, the factorial of a certain integer is basically multiplying all integers between 11 and that integer.

""_nP_knPk is defined as (n!)/((n-k)!)n!(nk)!. This is used to determine the number of ways you can choose kk items from nn items, where the order is important. ""_25P_325P3 is then (25!)/((25-3)!)=(25!)/(22!)25!(253)!=25!22!. Expanding this out using the process similar to the previous problem, we get (25*24*23*22*21*20*19*18*17*16*15*14*13*12*11*10*9*8*7*6*5*4*3*2*1)/(22*21*20*19*18*17*16*15*14*13*12*11*10*9*8*7*6*5*4*3*2*1)2524232221201918171615141312111098765432122212019181716151413121110987654321.

Notice that we can cancel some of these factors: (25*24*23*cancel(22)*cancel(21)*cancel(20)*cancel(19)*cancel(18)*cancel(17)*cancel(16)*cancel(15)*cancel(14)*cancel(13)*cancel(12)*cancel(11)*cancel(10)*cancel(9)*cancel(8)*cancel(7)*cancel(6)*cancel(5)*cancel(4)*cancel(3)*cancel(2)*cancel(1))/(cancel(22)*cancel(21)*cancel(20)*cancel(19)*cancel(18)*cancel(17)*cancel(16)*cancel(15)*cancel(14)*cancel(13)*cancel(12)*cancel(11)*cancel(10)*cancel(9)*cancel(8)*cancel(7)*cancel(6)*cancel(5)*cancel(4)*cancel(3)*cancel(2)*cancel(1)). We are left with 25*24*23, which is equal to 13800.