Given a square n-by-n matrix B, find a square n-by-n matrix A such that A*A = B.
I've only toyed with n=2, where I proved that |B| = (|A|)^2:
Spoiler:
Now I've got a few questions.
1. Does this rule of |B| = (|A|)^2 hold up for larger square matricies with n>2?
2. Is there a general equation for finding A just from B? A general equation for finding how many possible A's there are?
3. What happens when you try cube roots? n-th roots?
If you want a (very) easy problem to try, find A for
B = \left( \begin{array}{cc}
18 & 14\\
7 & 11\\ \end{array} \right)