Newton's Method
Examples
> | with(Student[Calculus1]): |
> | with(plots): |
Warning, the name changecoords has been redefined
> | NewtonsMethod((x^(3/2))*cos(x),x=1.2,output=plot,thickness=2); |
> | NewtonsMethod((x^(3/2))*cos(x),x=1.2,output=value); |
> | NewtonsMethod(cos(x),x=0.55,output=plot,thickness=2); |
> | NewtonsMethod(cos(x),x=0.55,output=value); |
> | NewtonsMethod(cos(x),x=0.15,output=plot,thickness=2); |
> | NewtonsMethod((x^(3/2))*cos(x),x=1,output=animation,thickness=2,title="5 Iterations of Newton's Method Applied to f(x) = x^(3/2)*cos(x) with Initial Value x = 1"); |
> |
> | NewtonsMethod((x^(3/2))*cos(x),x=1,output=sequence); |
> | NewtonsMethod((x^(3/2))*cos(x),x=1.2,output=animation,thickness=2,title="5 Iterations of Newton's Method Applied to f(x) = x^(3/2)*cos(x) with Initial Value x = 1.2"); |
> |