3) Limits

Consider the function h(x)

> restart;

> h:=sin(t)/t;

How would you find the limit when x-> infinity?

> limit(h,t = 0)

This can be verified by ploting h(x).

> plot(h,t=0..30);