12.07.2015 Views

Learning Guide Learning Guide

Learning Guide Learning Guide

Learning Guide Learning Guide

SHOW MORE
SHOW LESS
  • No tags were found...

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

6.1 Introductory Calculus • 227By specifying method = right or method = midpoint when usingthe ApproximateInt command, you can draw and sum boxes evaulatedat the right-hand side or at the midpoint of the box.Mixed Partial DerivativesThis section describes the D operator for derivatives and gives an exampleof a function whose mixed partial derivatives are different.Consider the following function.> f := (x,y) -> x * y * (x^2-y^2) / (x^2+y^2);f := (x, y) → x y (x2 − y 2 )x 2 + y 2The function f is not defined at (0, 0).> f(0,0);Error, (in f) numeric exception: division by zeroAt (x, y) = (r cos(θ), r sin(θ)) the function value is> f( r*cos(theta), r*sin(theta) );r 2 cos(θ) sin(θ) (r 2 cos(θ) 2 − r 2 sin(θ) 2 )r 2 cos(θ) 2 + r 2 sin(θ) 2As r tends to zero so does the function value.> Limit( %, r=0 );

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!