Hi everyone,
I would like to apply an operator on both sides of an equation. What do you think is the best approach to do it? The idea is that I don't want to rewrite the equation with the applied operator by hand :) I tried with the following code:
{I,J}::Indices(position=fixed);
\delta{#}::Derivative;
scL := A = B_J C^J
lhs_scL = manip.get_lhs(scL)
rhs_scL = manip.get_rhs(scL)
var_scL := \delta_{I}{@(lhs_scL)} = \delta_{I}{@(rhs_scL)};
But it gives me the error RuntimeError: Python object '\prod' does not exist.
Thanks, Mattia