Suppose I have two symmetrical matrices $A$ and $C$. Suppose they have the following relation $$ A = C^{T} \cdot C = C^{2} $$ and I would like to solve this above equation for $C$ matrix.
Is it correct to write the solution in this form? $$ C = A^{1/2} $$
If yes how to define square root of a matrix?



Nope, it's not correct. If
Ais positive semi-definite (as it is if it can be written asA = Transpose[B].B), you can do the following:Note that
B^2squares each entry and is different fromMatrixPower[B,2](equalB.B).