The function $d(n)$ gives the number of positive divisors of $n$, including n itself. So for example, $d(25) = 3$, because $25$ has three divisors: $1$, $5$, and $25$.
So how do I prove that the product of all of the positive divisors of $n$ (including $n$ itself) is $n^{\frac{d(n)}{2}}$.
For example, the divisors of $12$ are $1$, $2$, $3$, $4$, $6$, and $12$. $d(12)$ is $6$, and $1 · 2 · 3 · 4 · 6 · 12 = 1728 = 12^3 = 12^{\frac{6}{2}} = 12^{\frac{d(n)}{2}}$
You want to show that $\prod_{d\mid n}d^2=n^{d(n)}$. Note that $$\prod_{d\mid n}d^2=\prod_{d\mid n}d\frac{n}d=\prod_{d\mid n}n=n^{d(n)}$$