Under Construction

Compputing using Newtons Method

Here we define a little function to calculate the newton approximation: newton(f,var,start,iterations):= block([fp:diff(f,var),p:start,numer:true], for i:1 thru iterations do p: sublis([var=p],(p-f/fp)), p);done; produces Above Here First

Also see plotting