Review for mid-term in MTH231

The mid-term will cover lessons 1-7 and 9-25 on the syllabus.

We have done a fair amount this semester:

Review

In lessons 1 and 2 we reviewed some concepts. The most important being

In lessons 4-7, 9 we learned about limits and continuity. In particular we learned of:

Continuity (that $\lim_{x \rightarrow c} f(x) = f(c)$) is a key concept and can be interpreted as $f(x + h) - f(x)$ goes to $0$ as $h$ goes to $0$.

The intermediate value theorem is a consequence of continuity and important for theoretical reasons. However, it will not make an appearance on the exam.

The lessons 10-23 are on derivatives. We start with the definition in terms of a limit, but then move onto rules for computing derivatives. These rules allow the computation of a derivative without needing to take a limit.

The definition is in terms of a point ($c$): the derivative is the limit of the slope of the secant line between $c$ and $c+h$ as $h$ goes to $0$. This is quickly turned into the derivative as a function of $x$.

The rules to find derivatives are many but still limited:

Implicit differentiation is a technique that allows one to find the slopes of tangent lines to equations (not just functions). The basic insight is to use y is secretly a function of x so the chain rule must be used with expressions containing y.

Calculus has a large number of standard applications of the derivative. For this test, we will have a question on related rates. At one level this is nothing more than going from an equation relating two quantities to a new equation relating rates of change for the same two quantities. The hardest part is usually going from the problem to a picture to an equation.

Sample problems

These are sample problems, they need not be exhaustive or representative of what will be on the exam, but should help prepare you. They are actually on the easier side, as many can be done "in your head." Please also review examples done in class, the examples in the book and the homework questions in your preparation for this exam. (If something seems wrong, best to ask. There is a always a chance I made a mistake ;)


Review

is $4$?

Limits

The average rate of change over $[1,2]$ is

The average rate of change over $[2,3]$ is

The average rate of change over $[0, 2]$ is

The instantaneous rate of change at $2$ is

The instantaneous rate of change at $3$ is

$$\lim_{h\rightarrow 0}((e^{2h}-1)/h)$$
5×2 Array{Float64, 2}:
 0.1     2.2140275816016985
 0.01    2.0201340026755776
 0.001   2.002001334000303
 0.0001  2.000200013334563
 1.0e-5  2.0000200001257795
f(r) = (1 + r)^(1/r)
plot(f, -1/2, 1)

Find $\lim_{x \rightarrow 1-} f(x)$

Find $\lim_{x \rightarrow 1+} f(x)$

Find $\lim_{x \rightarrow 2+} f(x)$

Find $\lim_{x \rightarrow 4-} f(x)$

The value of $\lim_{x \rightarrow c}(f(x)^2 + 2f(x)g(x) + g(x)^2)$.

The value of $\lim_{x \rightarrow c}(f(x)/f(g(x))$

The value of $\lim_{x \rightarrow c}(10f(x)^3 + 5f(x)^2 + x)$

What "trick" allows you to algebraically find the limit at $0$ of $\cos(x)/(x-1)$?

What "trick" allows you to algebraically find the limit at $0$ of $(\sqrt{x}-3)/(x-9)$?

$$~ \lim_{h \rightarrow 0} \frac{1/(a+h) - 1/a}{h} ~$$
$$~ \lim_{x \rightarrow 0} \frac{\sin(x)}{1 + \cos(x)} \cdot \frac{\sin(x)}{x}. ~$$
$$~ \lim_{x \rightarrow 0} \frac{\sin(9x)}{3x} ~$$
$$~ \lim_{x \rightarrow 0} \frac{1 - \cos(10^9 \cdot x)}{x} ~$$
$$~ \lim{x \rightarrow 0} \frac{\sin(x)^2}{x} ~$$

of $f$ at $c=1$?

Derivatives

Which line is a tangent line?

Estimate the value of $f'(1)$.

On which intervals is the derivative positive?

$$~ f(x) = x \cdot (1 + \sin(x)) ~$$
$$~ f(x) = (1 + \sin(x))^{1/3} ~$$
$$~ \frac{1 + x^2}{1 - x^2} ~$$
$$~ f(x) = \sin^2(x^2 - 1) ~$$
$$~ f(x) = e^{-\frac{1}{2}(x-1)^2} ~$$
using ImplicitEquations, Roots
a = 1
f(x,y) = x^2/4 + y^2
plot(Eq(f,1))

At a point $(x,y)$ what is $dy/dx$?

At the same point, what is the rate of change of area?

(For both, assume both $w$ and $l$ are functions of time.