0% found this document useful (0 votes)
2 views2 pages

Calculus Problem Set Solutions

This document contains solutions to problems from a problem set involving limits, derivatives, and integrals of functions. The problems cover topics like limits as x approaches 0 or infinity, taking derivatives of composite functions, and integrating functions containing logarithms.

Uploaded by

Zhu Jingjie
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

Calculus Problem Set Solutions

This document contains solutions to problems from a problem set involving limits, derivatives, and integrals of functions. The problems cover topics like limits as x approaches 0 or infinity, taking derivatives of composite functions, and integrating functions containing logarithms.

Uploaded by

Zhu Jingjie
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Problem Set A

%Jingjie Zhu
%

%6a.
syms x
limit(tan(x)/x)

ans =

%6b.
syms x
limit(1/x,x,0,'right')
syms x
limit(1/x,x,0,'left')

ans =

Inf

ans =

-Inf

%6c.
syms x
limit(x*exp(-x^2),x,inf)
limit(x*exp(-x),x,-inf)

ans =
0

ans =

-Inf

%7b.
diff(sin(sin(sin(x))))

ans =

cos(sin(x))*cos(sin(sin(x)))*cos(x)

%8c.
syms x
int((x+1)*log(x),x)

ans =

x*(log(x) - 1) + x^2*(log(x)/2 - 1/4)

You might also like