Ask Your Question
0

How the new version achieves this:diff(x(t)*y(t)) in the latest version?

asked 3 years ago

anonymous user

Anonymous

updated 3 years ago

slelievre gravatar image

How the new version achieves this: diff(x(t)*y(t)) in the latest version?

sage: t = var(’t’)
sage: x = function(’x’, t) 
sage: y = function(’y’, t) 
sage: diff(x(t)*y(t),t)
TypeError: Substitution using function-call syntax and unnamed arguments
has been removed. You can use named arguments instead, like EXPR(x=..., y=...)
Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 3 years ago

tolga gravatar image

The following works in SageMathCell:

t = var('t')
x = function('x')(t) 
y = function('y')(t) 
diff(x*y,t)
Preview: (hide)
link

Comments

Thanks !!!

TimeVector gravatar imageTimeVector ( 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: 317 times

Last updated: Mar 28 '22