Hello,
I’m just toying around with diff(), dsolve(), and, as it happens, also with pdsolve(). Let’s say I have an equation as the following:
DF := (diff(f(x, y, t), `$`(x, 2)))*omega+(diff(f(x, y, t), `$`(y, 2)))^2+diff(f(x(t), y(t), t), t) = 5;
A function f, depending on x, y and t where x and y also depend on t. I multiply the second partial derivative of f by x with ω, add it to the square of the second partial derivative of f by...