Hi,
Could someone please tell me how to enter this PDE into Mathematica? I am really struggling with the partials.
Cheers, Paul
Here is a way, using the D operator:
D
D[u[r, t], t] == 1/r D[r*D[u[r, t], r], r] (D[u[r, t], r] /. r -> 0) == 0 (D[u[r, t], r] /. r -> 1) == 0
Thank you, I will try that :)