Skip to content

Commit cddab5c

Browse files
committed
Added Content
1 parent 92c6cfe commit cddab5c

10 files changed

Lines changed: 465 additions & 10 deletions

File tree

44.5 KB
Loading
62 KB
Loading
5.08 KB
Loading
73.1 KB
Loading

content/iit-madras/Mathematics-1/Week-8/03-Computing-derivatives-and-L-Hospital-rule/index.md

Lines changed: 257 additions & 5 deletions
Large diffs are not rendered by default.
41.6 KB
Loading
51.1 KB
Loading
98.2 KB
Loading
Lines changed: 204 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,216 @@
11
---
2-
title: Limits and continuity
2+
title: Derivatives, tangents, and linear approximation
33
date: 2025-08-09
44
weight: 87
55
image: https://i.ytimg.com/vi/9brk313DjV8/maxresdefault.jpg
66
emoji: 🧮
7-
slug: "Limits and continuity"
8-
linkTitle: Limits and continuity
7+
slug: "Derivatives, tangents, and linear approximation"
8+
linkTitle: Derivatives, tangents, and linear approximation
99
series_order: 87
1010
---
1111

1212
A well-defined collection of distinct objects called elements or members.
1313

14-
{{< youtube 0WHixZdnxTQ >}}
14+
{{< youtube 4IpVR6QpBok >}}
1515

16-
https://youtu.be/do-iDBxQCpw
16+
https://youtu.be/4IpVR6QpBok
1717

18+
## Exercise Questions
19+
20+
![alt text](image.png)
21+
![alt text](image-1.png)
22+
23+
![alt text](image-2.png)
24+
25+
Good morning! Here in India on this Monday, this is a fantastic set of questions that explores one of the most important applications of derivatives: **tangent lines and linear approximations**.
26+
27+
### **Core Concepts: The Derivative, Tangents, and Approximations**
28+
29+
1. **The Derivative is the Slope of the Tangent Line:**
30+
The derivative of a function at a point, $f'(a)$, gives you the exact slope of the line that is tangent to the curve $y=f(x)$ at the point $(a, f(a))$.
31+
32+
2. **Equation of the Tangent Line:**
33+
Once you know the point of tangency $(a, f(a))$ and the slope $m=f'(a)$, you can write the equation of the tangent line using the point-slope form:
34+
$$y - f(a) = f'(a)(x - a)$$
35+
36+
3. **Linear Approximation:**
37+
The tangent line is the best possible linear approximation of the function near the point of tangency. The formula for the linear approximation, $L(x)$, of a function $f(x)$ near a point $x=a$ is simply the equation of the tangent line solved for y:
38+
$$L(x) = f(a) + f'(a)(x - a)$$
39+
For values of $x$ very close to $a$, we can say that $f(x) \approx L(x)$.
40+
41+
---
42+
{{< border >}}
43+
### **Question 1: Sum of Slopes** (from file `image_65e9ff.png`)
44+
45+
**The Question:**
46+
Suppose $m_1, m_2$, and $m_3$ denote the slopes of the tangents of the curve represented by the function $f(x) = x^3 + 3x$, at the points $(-1, f(-1))$, $(0, f(0))$, and $(1, f(1))$, respectively. The value of $m_1+m_2+m_3$ is \_\_\_\_\_\_\_\_\_\_.
47+
48+
**Detailed Solution:**
49+
1. **Find the derivative of the function.** The derivative will give us the formula for the slope at any point $x$.
50+
* $f(x) = x^3 + 3x$
51+
* $f'(x) = 3x^2 + 3$
52+
2. **Calculate the slope at each point:**
53+
* At $x=-1$, the slope is $m_1 = f'(-1) = 3(-1)^2 + 3 = 3(1) + 3 = 6$.
54+
* At $x=0$, the slope is $m_2 = f'(0) = 3(0)^2 + 3 = 0 + 3 = 3$.
55+
* At $x=1$, the slope is $m_3 = f'(1) = 3(1)^2 + 3 = 3(1) + 3 = 6$.
56+
3. **Find the sum:**
57+
* $m_1 + m_2 + m_3 = 6 + 3 + 6 = 15$.
58+
59+
**Final Answer:** The value is **15**.
60+
{{< /border >}}
61+
62+
{{< border >}}
63+
### **Question 2: Tangent to a Parabola** (from file `image_65e9ff.png`)
64+
65+
**The Question:**
66+
Which of the following statements are correct?
67+
68+
**Detailed Solution:**
69+
Let's analyze the properties of tangents for the given parabolas.
70+
* **"Tangent to the parabola $(y-k) = a(x-h)^2$ at the vertex is $x=h$"**: The vertex of this parabola is at the point $(h, k)$. At the vertex, the tangent line to a standard parabola is always **horizontal**. A horizontal line has the equation $y=\text{constant}$. So the tangent is $y=k$. The statement says the tangent is $x=h$ (a vertical line). This is **FALSE**.
71+
* **"Tangent to the parabola $(y-k) = a(x-h)^2$ at the vertex is $y=k$"**: As explained above, the tangent at the vertex is a horizontal line passing through the vertex. This statement is **TRUE**.
72+
* **"Tangent to the parabola $y=ax^2$ at $(a, a^3)$ is $y=a^2(2x-a)$"**: Let $f(x)=ax^2$. The derivative is $f'(x)=2ax$. The point of tangency is at $x=a$. The slope at this point is $f'(a)=2a(a)=2a^2$. The y-coordinate is $f(a)=a(a)^2=a^3$. Using the point-slope form: $y - a^3 = 2a^2(x - a) \implies y = 2a^2x - 2a^3 + a^3 \implies y = 2a^2x - a^3$. This does not match the given equation. **FALSE**.
73+
* **"Tangent to the parabola $y=ax^2$ at $(a, a^3)$ is $y=2ax+a^3$"**: This is also **FALSE** based on the calculation above.
74+
75+
**Final Answer:** The only correct statement is **"Tangent to the parabola $(y-k) = a(x-h)^2$ at the vertex is $y=k$."**
76+
{{< /border >}}
77+
78+
{{< border >}}
79+
### **Question 3: Linear Approximation of a Quadratic** (from file `image_65e9ff.png`)
80+
81+
**The Question:**
82+
Consider the function $f: \mathbb{R} \to \mathbb{R}$, such that $f(x) = ax^2+bx+c$. Which of the following statements are correct?
83+
84+
**Detailed Solution:**
85+
We need to find the linear approximation $L_f(x)$ at the point $(m, f(m))$.
86+
1. **Find the necessary components for the formula $L(x) = f(m) + f'(m)(x-m)$:**
87+
* **$f(m)$**: $f(m) = am^2 + bm + c$.
88+
* **$f'(x)$**: The derivative of $f(x)$ is $f'(x) = 2ax + b$.
89+
* **$f'(m)$**: The slope at $x=m$ is $f'(m) = 2am + b$.
90+
2. **Evaluate the options about the slope:**
91+
* "The slope of the linear approximation... is $2am+b$". This is **TRUE**, as the slope of the approximation is $f'(m)$.
92+
* "The slope... is $2ax+b$". This is **FALSE**; this is the general derivative function, not the specific slope at $x=m$.
93+
3. **Construct the equation of the linear approximation:**
94+
* $L(x) = (am^2 + bm + c) + (2am + b)(x-m)$
95+
* $L(x) = am^2 + bm + c + (2am+b)x - m(2am+b)$
96+
* $L(x) = (2am+b)x + am^2 + bm + c - 2am^2 - bm$
97+
* $L(x) = (2am+b)x + c - am^2$.
98+
4. **Evaluate the options about the equation:**
99+
* "The equation... is $y = (2am+b)x + c - am^2$". This matches our calculation. **TRUE**.
100+
* "The equation... is $y = (2am+b)x + c$". This is **FALSE**.
101+
102+
**Final Answer:**
103+
* **The slope of the linear approximation $L_f(x)$ at $(m, f(m))$ is $2am+b$.**
104+
* **The equation of the linear approximation $L_f(x)$ at $(m, f(m))$ is $y=(2am+b)x+c-am^2$.**
105+
{{< /border >}}
106+
107+
{{< border >}}
108+
### **Question 4: Linear Approximation of $e^x \sin x$** (from file `image_65e9ba.png`)
109+
110+
**The Question:**
111+
Consider the function $f: \mathbb{R} \to \mathbb{R}$, such that $f(x) = e^x \sin x$. Which of the following expression represents the linear approximation $L_f(x)$ at $x = \frac{\pi}{2}$?
112+
113+
**Detailed Solution:**
114+
We need to find the linear approximation $L(x)$ at $a = \pi/2$.
115+
1. **Find the point of tangency $(a, f(a))$:**
116+
* $a = \pi/2$.
117+
* $f(\pi/2) = e^{\pi/2} \sin(\pi/2) = e^{\pi/2}(1) = e^{\pi/2}$.
118+
2. **Find the slope of the tangent line, $f'(a)$:**
119+
* First, find the derivative $f'(x)$ using the product rule:
120+
* $f'(x) = (e^x)'(\sin x) + (e^x)(\sin x)' = e^x \sin x + e^x \cos x$.
121+
* Now, evaluate the derivative at $a = \pi/2$:
122+
* $f'(\pi/2) = e^{\pi/2} \sin(\pi/2) + e^{\pi/2} \cos(\pi/2) = e^{\pi/2}(1) + e^{\pi/2}(0) = e^{\pi/2}$.
123+
3. **Evaluate the options:**
124+
* **"The slope of the linear approximation... is $-e^{\pi/2}$"**: **FALSE**. The slope is $e^{\pi/2}$.
125+
* **"The slope of the linear approximation... is $e^{\pi/2}$"**: **TRUE**.
126+
4. **Construct the equation of the linear approximation:**
127+
* $L(x) = f(a) + f'(a)(x-a)$
128+
* $L(x) = e^{\pi/2} + e^{\pi/2}(x - \pi/2)$
129+
* We can factor out $e^{\pi/2}$:
130+
* $L(x) = e^{\pi/2}(1 + x - \pi/2)$ or $L(x) = e^{\pi/2}x + e^{\pi/2}(1 - \pi/2)$.
131+
5. **Evaluate the options about the equation:**
132+
* The options given are `-e^{\pi/2}x + ...` and `e^{\pi/2}x + ...`. Our equation's x-term is $e^{\pi/2}x$. Let's check the fourth option:
133+
* "The equation... is $L_f(x) = e^{\pi/2}x + e^{\pi/2}(1-\frac{\pi}{2})$". This matches our factored form. **TRUE**.
134+
135+
**Final Answer:**
136+
* **The slope of the linear approximation $L_f(x)$ at $x=\frac{\pi}{2}$ is $e^{\pi/2}$.**
137+
* **The equation of the linear approximation... is $L_f(x) = e^{\pi/2}x + e^{\pi/2}(1-\frac{\pi}{2})$.**
138+
{{< /border >}}
139+
140+
{{< border >}}
141+
### **Question 5: Finding the Derivative from a Tangent Line** (from file `image_65e95c.png`)
142+
143+
**The Question:**
144+
Let $f$ be a differentiable function at $x=1$. The tangent line to the curve represented by the function $f$ at the point $(1, 0)$ passes through the point $(5, 8)$. What will be the value of $f'(1)$?
145+
146+
**Detailed Solution:**
147+
1. The value of the derivative at a point, $f'(1)$, is the **slope** of the tangent line at $x=1$.
148+
2. We are told the tangent line passes through two points: the point of tangency $(1, 0)$ and another point $(5, 8)$.
149+
3. We can calculate the slope ($m$) of this line using the standard slope formula:
150+
$$m = \frac{y_2 - y_1}{x_2 - x_1} = \frac{8 - 0}{5 - 1} = \frac{8}{4} = 2$$
151+
4. Since the slope of the tangent line is 2, the value of the derivative at that point is also 2.
152+
153+
**Final Answer:** The value of $f'(1)$ is **2**.
154+
{{< /border >}}
155+
156+
{{< border >}}
157+
### **Question 6: Finding the Derivative from an Equation** (from file `image_65e95c.png`)
158+
159+
**The Question:**
160+
Suppose the tangent of the curve represented by a function $f$ at the point $(1, f(1))$ is given by the equation $y = 3x+2$. What is the value of $f'(1)$?
161+
162+
**Detailed Solution:**
163+
1. The value of the derivative, $f'(1)$, is the slope of the tangent line at $x=1$.
164+
2. The equation of the tangent line is given as $y=3x+2$.
165+
3. This equation is in the slope-intercept form, $y=mx+c$, where $m$ is the slope.
166+
4. By comparing the equations, we can see that the slope $m=3$.
167+
168+
**Final Answer:** The value of $f'(1)$ is **3**.
169+
{{< /border >}}
170+
171+
{{< border >}}
172+
### **Question 7: Linear Approximation of a Square Root** (from file `image_65e95c.png`)
173+
174+
**The Question:**
175+
Using the linear approximation of $f(x) = \sqrt{x}$ at $x=4$, the approximate value of $\sqrt{4.4}$ is \_\_\_\_\_\_\_\_\_\_.
176+
177+
**Detailed Solution:**
178+
1. **Identify the function and the point of approximation:**
179+
* $f(x) = \sqrt{x}$
180+
* We are approximating near a "nice" point, $a=4$.
181+
2. **Find the components for the linear approximation formula $L(x) = f(a) + f'(a)(x-a)$:**
182+
* **$f(a)$**: $f(4) = \sqrt{4} = 2$.
183+
* **$f'(x)$**: The derivative of $\sqrt{x} = x^{1/2}$ is $f'(x) = \frac{1}{2}x^{-1/2} = \frac{1}{2\sqrt{x}}$.
184+
* **$f'(a)$**: $f'(4) = \frac{1}{2\sqrt{4}} = \frac{1}{2 \cdot 2} = \frac{1}{4}$.
185+
3. **Construct the linear approximation equation:**
186+
* $L(x) = 2 + \frac{1}{4}(x-4)$.
187+
4. **Use the approximation to find the value:**
188+
* We want to approximate $\sqrt{4.4}$, so we use $x=4.4$.
189+
* $\sqrt{4.4} \approx L(4.4) = 2 + \frac{1}{4}(4.4 - 4) = 2 + \frac{1}{4}(0.4) = 2 + 0.1 = 2.1$.
190+
191+
**Final Answer:** The approximate value is **2.1**.
192+
{{< /border >}}
193+
194+
{{< border >}}
195+
### **Question 8: Linear Approximation of a Power Function** (from file `image_65e95c.png`)
196+
197+
**The Question:**
198+
Using the linear approximation of $f(x) = (1+x)^4$ at $x=0$, the approximate value of $(1.01)^4$ is \_\_\_\_\_\_\_\_\_\_.
199+
200+
**Detailed Solution:**
201+
1. **Identify the function and the point of approximation:**
202+
* $f(x) = (1+x)^4$.
203+
* We are approximating near the "nice" point, $a=0$.
204+
* We want to find $(1.01)^4$, which is the same as $f(0.01)$. So, we will use $x=0.01$.
205+
2. **Find the components for the linear approximation formula $L(x) = f(a) + f'(a)(x-a)$:**
206+
* **$f(a)$**: $f(0) = (1+0)^4 = 1$.
207+
* **$f'(x)$**: Using the chain rule, the derivative is $f'(x) = 4(1+x)^3 \cdot (1) = 4(1+x)^3$.
208+
* **$f'(a)$**: $f'(0) = 4(1+0)^3 = 4$.
209+
3. **Construct the linear approximation equation:**
210+
* $L(x) = 1 + 4(x-0) = 1 + 4x$.
211+
4. **Use the approximation to find the value:**
212+
* We want to approximate $f(0.01)$.
213+
* $(1.01)^4 \approx L(0.01) = 1 + 4(0.01) = 1 + 0.04 = 1.04$.
214+
215+
**Final Answer:** The approximate value is **1.04**.
216+
{{< /border >}}

content/iit-madras/Mathematics-1/Week-9/01-Critical-Points-local-maxima-and-minima/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,7 @@ A well-defined collection of distinct objects called elements or members.
1414
{{< youtube wUPkaBwF1-Y >}}
1515

1616
https://youtu.be/wUPkaBwF1-Y
17+
18+
19+
## Exercise Questions
20+

0 commit comments

Comments
 (0)