Please suggest something about these ideas:
1. doit(deep = False)
2. doit(deep = True)
3. Function call with no doit()
Specifically, what should be the output of the following:
Let X = Matrix([[1, 2, 3]]*3),
Y = MatrixSymbol('Y', 3, 3)
1. Adjoint(X, 2*X, Y, -3*Y), Trace(X, 2*X, Y, -3*Y), Transpose(X, 2*X, Y, -3*Y)
2. The above calls with .doit(deep = False)
3. The above calls with .doit(deep = True)
This is necessary in order to solve an issue I am having on implementation of Trace function over here:
https://github.com/sympy/sympy/pull/9031#issuecomment-74974127Thanks!