Ask Your Question
1

Implicit Differentiation help?

asked 2022-01-08 02:41:57 +0200

Rossa625 gravatar image

How can I prove that dy/dx = x^3 + x is equal to y = x^4/4 + x^2/2 + C using SageMath?

I'm interested in merging SageMath and LaTeX together in some way to help with my note-taking skills for college coming up. Thanks!

edit retag flag offensive close merge delete

Comments

Welcome to Ask Sage! Thank you for your question.

slelievre gravatar imageslelievre ( 2022-01-09 07:37:30 +0200 )edit

1 Answer

Sort by ยป oldest newest most voted
2

answered 2022-01-09 07:41:46 +0200

slelievre gravatar image

Combining SageMath with LaTeX can be done with:

  • SageTeX
  • PythonTeX
  • texsurgery

You could also have a look into TeXmacs and its SageMath package.

To solve the differential equation:

sage: y = function('y')(x)
sage: de = diff(y, x) == x^3 + x
sage: desolve(de, y)
1/4*x^4 + 1/2*x^2 + _C
edit flag offensive delete link more

Your Answer

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

Add Answer

Question Tools

Stats

Asked: 2022-01-08 02:41:57 +0200

Seen: 128 times

Last updated: Jan 09 '22