Skip to content

Instantly share code, notes, and snippets.

@paulpanezc
Created September 23, 2021 21:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulpanezc/3da0d9529ed2490dec71098ccff09cb7 to your computer and use it in GitHub Desktop.
Save paulpanezc/3da0d9529ed2490dec71098ccff09cb7 to your computer and use it in GitHub Desktop.
from sympy import *
init_printing()
x, u, t, c = symbols('x u t c')
expr1 = Derivative(u, t, 2)
expr2 = c * Derivative(u, x, 2)
Eq(expr1, expr2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment