Find $\gcd(20!, 12!)$ and $\text{lcm}(20!, 12!)$.
My answer is:
$20=2^2 \times 5$
$12=2^2 \times 3$
GCD $= 2^2 = 4$
LCM $= 2^2 \times 3 \times 5 = 60$
....
But my teacher said that this symbol ! means factorial. How can I find GCD and LCM for the factorial of these numbers?
The definition of factorial is $n!=n\times(n-1)\times\dots\times1$, or if you prefer
$$\begin{eqnarray} 0! &=& 1\\ n! &=&n\times(n-1)!\end{eqnarray}$$
Thus, if $p<q$, you have that $p!$ divides $q!$, so $GCD(p!,q!)=p!$, and $LCM(p!,q!)=q!$.