Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
1

How do I use sage to check differential vector identities? Do I need to create an operator?

asked 3 years ago

Willians gravatar image

updated 3 years ago

Hi!
I would like to check some differential vector identities. Any suggestion to achieve this goal would be welcomed.


Example of a case I already worked out: (fg)=(f)g+f(g).

Code (I coudn't manage to put it on a single box, sorry):

from sage.manifolds.operators import *
E.<x,y,z> = EuclideanSpace()
f = function('f')(x,y,z)
g = function('g')(x,y,z)
sff = E.scalar_field(sff, name = 'sff')
sfg = E.scalar_field(sfg, name = 'sfg')
sffg = E.scalar_field(sffg, name = 'sffg')
grad(sffg) == grad(sff) * sfg + sff * grad(sfg)

Out: True


Example of what I want to check: (AB)=A×(×B)+B×(×A)+(A)B+(B)A. I don't know how to came to differential operators of the form (A).

I tried (kind of hopelessly) newOperator=A.dot(grad()) without success.

How could I put sage to check identities like this one?

Thank you in advance.

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 3 years ago

eric_g gravatar image

You can define the following Python function:

def dotnabla(A, B):
    nabla = E.metric().connection()
    return nabla(B).contract(A)

which evaluates (A)B as the contraction AjjBi.

Preview: (hide)
link

Comments

Thank you a lot, Eric! This is what I was searching for.

Willians gravatar imageWillians ( 3 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 3 years ago

Seen: 274 times

Last updated: Jul 30 '21