Skip to content

Commit cec8ebe

Browse files
probem_10-12
1 parent d6c0f35 commit cec8ebe

1 file changed

Lines changed: 109 additions & 0 deletions

File tree

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "324d94c5-66bb-4c5e-b6f0-19eb22c191c1",
6+
"metadata": {},
7+
"source": [
8+
"### **Problems**\n",
9+
"\n",
10+
"$$10. \\text{Evaluate } \\lim_{x \\to -\\infty } { tan^{-1}(7-x+3x^{5})}$$\n",
11+
"\n",
12+
"\n",
13+
"$$11. \\text{Evaluate } \\lim_{x \\to \\infty } { tan^{-1}(\\frac{4+7t}{2-t})}$$\n",
14+
"\n",
15+
"\n",
16+
"$$12. \\text{Evaluate } \\lim_{x \\to \\infty } { tan^{-1}(\\frac{3w^{2}-9w^{4}}{4w-w^{3}})}$$"
17+
]
18+
},
19+
{
20+
"cell_type": "markdown",
21+
"id": "d8cb363a-06d6-446f-9d94-8b506023f343",
22+
"metadata": {},
23+
"source": [
24+
"---\n",
25+
"\n",
26+
"### **Solutions** \n",
27+
"\n",
28+
"#### **10.** Given the limit:\n",
29+
"$$ \\lim_{x \\to -\\infty} \\tan^{-1}(7 - x + 3x^5) $$\n",
30+
"\n",
31+
"We analyze the behavior of the argument inside the arctangent as $x \\to -\\infty$:\n",
32+
"\n",
33+
"- As $x \\to -\\infty$:\n",
34+
" - The term $3x^5$ dominates (since $x^5 \\to -\\infty$ for $x \\to -\\infty$)\n",
35+
" - So $7 - x + 3x^5 \\to -\\infty$\n",
36+
"\n",
37+
"Therefore:\n",
38+
"$$ \\boxed{\\lim_{x \\to -\\infty} \\tan^{-1}(7 - x + 3x^5) = \\tan^{-1}(-\\infty) = -\\frac{\\pi}{2}} $$\n",
39+
"\n",
40+
"\n",
41+
"\n",
42+
"\n",
43+
"#### **11.** Given the limit:\n",
44+
"$$ \\lim_{t \\to \\infty} \\tan^{-1}\\left(\\frac{4 + 7t}{2 - t}\\right) $$\n",
45+
"\n",
46+
"We analyze the behavior of the rational expression inside the arctangent as $t \\to \\infty$:\n",
47+
"\n",
48+
"Divide numerator and denominator by $t$:\n",
49+
"$$\n",
50+
"\\frac{4 + 7t}{2 - t} = \\frac{\\frac{4}{t} + 7}{\\frac{2}{t} - 1}\n",
51+
"$$\n",
52+
"\n",
53+
"As $t \\to \\infty$:\n",
54+
"- $\\frac{4}{t} \\to 0$\n",
55+
"- $\\frac{2}{t} \\to 0$\n",
56+
"- So the expression $\\to \\frac{0 + 7}{0 - 1} = -7$\n",
57+
"\n",
58+
"Therefore:\n",
59+
"$$ \\boxed{\\lim_{t \\to \\infty} \\tan^{-1}\\left(\\frac{4 + 7t}{2 - t}\\right) = \\tan^{-1}(-7)} $$\n",
60+
"\n",
61+
"Since $\\tan^{-1}(-7)$ is a finite number (approximately $-1.4289$ radians):\n",
62+
"\n",
63+
"\n",
64+
"#### **12.** Given the limit:\n",
65+
"$$ \\lim_{w \\to \\infty} \\tan^{-1}\\left(\\frac{3w^2 - 9w^4}{4w - w^3}\\right) $$\n",
66+
"\n",
67+
"We analyze the behavior of the rational expression inside the arctangent as $w \\to \\infty$:\n",
68+
"\n",
69+
"Divide numerator and denominator by $w^3$ (the highest power in the denominator):\n",
70+
"$$\n",
71+
"\\frac{3w^2 - 9w^4}{4w - w^3} = \\frac{\\frac{3w^2}{w^3} - \\frac{9w^4}{w^3}}{\\frac{4w}{w^3} - \\frac{w^3}{w^3}} = \\frac{\\frac{3}{w} - 9w}{\\frac{4}{w^2} - 1}\n",
72+
"$$\n",
73+
"\n",
74+
"As $w \\to \\infty$:\n",
75+
"- $\\frac{3}{w} \\to 0$\n",
76+
"- $9w \\to \\infty$\n",
77+
"- $\\frac{4}{w^2} \\to 0$\n",
78+
"- So the numerator $\\to -\\infty$, denominator $\\to -1$\n",
79+
"\n",
80+
"Thus:\n",
81+
"$$ \\frac{3w^2 - 9w^4}{4w - w^3} \\to \\frac{-\\infty}{-1} = \\infty $$\n",
82+
"\n",
83+
"Therefore:\n",
84+
"$$ \\boxed{\\lim_{w \\to \\infty} \\tan^{-1}\\left(\\frac{3w^2 - 9w^4}{4w - w^3}\\right) = \\tan^{-1}(\\infty) = \\frac{\\pi}{2}} $$\n"
85+
]
86+
}
87+
],
88+
"metadata": {
89+
"kernelspec": {
90+
"display_name": "Python 3 (ipykernel)",
91+
"language": "python",
92+
"name": "python3"
93+
},
94+
"language_info": {
95+
"codemirror_mode": {
96+
"name": "ipython",
97+
"version": 3
98+
},
99+
"file_extension": ".py",
100+
"mimetype": "text/x-python",
101+
"name": "python",
102+
"nbconvert_exporter": "python",
103+
"pygments_lexer": "ipython3",
104+
"version": "3.12.6"
105+
}
106+
},
107+
"nbformat": 4,
108+
"nbformat_minor": 5
109+
}

0 commit comments

Comments
 (0)