Post Reply 
higher derivatives of implicit equation?
09-19-2017, 06:04 AM (This post was last modified: 09-21-2017 12:37 PM by parisse.)
Post: #6
RE: higher derivatives of implicit equation?
In the meantime, you can enter this program:
Code:

idiff(eq,x,y,n):=begin
  local j,dn,d1;
  d1:=-diff(eq,x)/diff(eq,y);
  dn:=d1;
  for j from 2 to n do
    dn:=diff(dn,x)+diff(dn,y)*d1;
  end;
  return dn;
end
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: higher derivatives of implicit equation? - parisse - 09-19-2017 06:04 AM



User(s) browsing this thread: 1 Guest(s)