Welcome to Cadabra Q&A, where you can ask questions and receive answers from other members of the community.
0 votes

Hi everybody!

How can I specify an index in an expression to pintegrate act on?

For example, I want to do an integral by part on

\partial_{a}{F} \partial_{b}^{a b}{G}

to form

\partial_{a}^{a}{F} \partial_{b}^{b}{G}
in General questions by (1.1k points)

'integral by part' can not deal with the multiple index by now. you can run the following in cadabra:

\partial{#}::PartialDerivative;
ex:= \int{ \partial_{b}{ \partial^{a}{\partial^{b}{A}} } B C D};
integrate_by_parts(_, $A$);

Please log in or register to answer this question.

...