HP Forums

Full Version: derivatives of a parametric equation
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there an hp prime command for finding derivatives of parametric equations, with respect to a parametric variable?

For example, find the second derivative of a parametric equation where:
x = t² - 4;
y = t³ - 3*t;

Result: d²y/dx² = (3*t²+3) / (4*t³);

-Dale-
Code:

y1:=diff(y,t); x1:=diff(x,t); normal(diff(y1/x1,t)/x1);
Since x1=dx/dt and y1=dy/dt, dy/dx=y1/x1, then d2y/dx^2=d(dy/dx)/dx=d/dt(dy/dx)/x1
Thank you Parisse, (and Aries). I was looking for a single pre-existing command that would perform this operation, (in the toolbox catalog). I didn't find anything specifically, but there is always the chance I might have missed it!

-Dale-
Reference URL's