Show description
MAT 266 Chapter 8: Sequences & Series Cheat Sheet
MAT 266 Chapter 8: Sequences & Series Cheat Sheet
Sequences
Series
Convergence
Power Series
Taylor/Maclaurin
MAT 266 Chapter 8 Cheat Sheet
Sequences • Series • Convergence • Power Series • Taylor/Maclaurin
8.1 Sequences
Sequence Behavior
For sequence an:
• Converges if lim(n→∞) an = L (finite)
• Diverges if limit doesn't exist or is ±∞
• Oscillates if it alternates between values
Common Limits:
• lim(n→∞) 1/n = 0
• lim(n→∞) rn = 0 if |r| < 1
• lim(n→∞) rn = ∞ if r > 1
8.2 Infinite Series
Series Convergence
∞
∑ an = a1 + a2 + a3 + ...
n=1
Converges if lim(n→∞) Sn = L (finite)
where Sn = partial sum = a1 + a2 + ... + an
Geometric Series:
∞
∑ arn-1 = a + ar + ar² + ar³ + ...
n=1
Converges to a/(1-r) if |r| < 1
Diverges if |r| ≥ 1
8.4 Convergence Tests
Ratio Test
L = lim(n→∞) |an+1/an|
• L < 1: Converges absolutely
• L > 1: Diverges
• L = 1: Test fails
Root Test
L = lim(n→∞) ⁿ√|an|
• L < 1: Converges absolutely
• L > 1: Diverges
• L = 1: Test fails
Integral Test
If f(x) ≥ 0, decreasing, continuous
∞ ∞
∑ f(n) and ∫ f(x)dx
n=1 1
both converge or both diverge
Comparison Test
0 ≤ an ≤ bn for all n
• If ∑bn converges → ∑an converges
• If ∑an diverges → ∑bn diverges
8.5 Power Series
Interval & Radius of Convergence
∞
∑ cn(x - a)n = c0 + c1(x-a) + c2(x-a)² + ...
n=0
Radius of Convergence R:
Using Ratio Test: R = lim(n→∞) |cn/cn+1|
Or: R = 1/lim(n→∞) |cn+1/cn|
Interval: (a-R, a+R)
Check endpoints separately!
8.6 Functions as Power Series
Basic Series
1/(1-x) = ∑ xn for |x| < 1
1/(1+x) = ∑ (-1)nxn for |x| < 1
Substitution Method
Replace x with u in basic series
Example: 1/(1-x²)
= ∑ (x²)n = ∑ x2n
Integration Method
ln(1+x) = ∫ 1/(1+x) dx
= ∫ ∑(-1)nxn dx
= ∑ (-1)nxn+1/(n+1)
Differentiation Method
If f(x) = ∑ cnxn
then f'(x) = ∑ ncnxn-1
8.7 Taylor & Maclaurin Series
General Formulas
Taylor Series (about x = a):
f(x) = ∑ f(n)(a)/n! · (x-a)n
= f(a) + f'(a)(x-a) + f''(a)(x-a)²/2! + ...
Maclaurin Series (about x = 0):
f(x) = ∑ f(n)(0)/n! · xn
= f(0) + f'(0)x + f''(0)x²/2! + f'''(0)x³/3! + ...
Common M…
MAT 266 Chapter 8: Sequences & Series Cheat Sheet
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MAT 266 Chapter 8: Sequences & Series Cheat Sheet</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Press Start 2P', monospace;
background: linear-gradient(45deg, #1a1a2e, #16213e);
color: #00ff41;
min-height: 100vh;
line-height: 1.6;
overflow-x: auto;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.header {
text-align: center;
margin-bottom: 30px;
padding: 20px;
background: linear-gradient(90deg, #ff6b35, #f7931e);
border-radius: 10px;
box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
from { box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
to { box-shadow: 0 0 30px rgba(255, 107, 53, 0.8); }
}
.header h1 {
color: #1a1a2e;
font-size: 16px;
margin-bottom: 10px;
text-shadow: 2px 2px 0px #fff;
}
.header p {
color: #1a1a2e;
font-size: 8px;
}
.section {
margin-bottom: 30px;
padding: 20px;
background: rgba(0, 255, 65, 0.1);
border: 2px solid #00ff41;
border-radius: 8px;
box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}
.section h2 {
color: #ff6b35;
font-size: 12px;
margin-bottom: 15px;
text-transform: uppercase;
border-bottom: 2px solid #ff6b35;
padding-bottom: 5px;
}
.subsection {
margin-bottom: 20px;
padding: 15px;
background: rgba(22, 33, 62, 0.8);
border-left: 4px solid #f7931e;
border-radius: 5px;
}
.subsection h3 {
color: #f7931e;
font-size: 10px;
margin-bottom: 10px;
}
.formula {
background: rgba(0, 0, 0, 0.6);
padding: 15px;
margin: 10px 0;
border-radius: 5px;
border: 1px solid #00ff41;
font-family: 'Courier New', monospace;
color: #00ffff;
text-align: center;
font-size: 14px;
line-height: 1.8;
}
.test-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 15px;
margin-top: 15px;
}
.test-item {
background: rgba(255, 107, 53, 0.2);
padding: 15px;
border-radius: 8px;
border: 1px solid #ff6b35;
}
.test-item h4 {
color: #ff6b35;
font-size: 8px;
margin-bottom: 8px;
}
.test-item .condition {
color: #00ffff;
font-size: 7px;
margin-bottom: 5px;
}
.test-item .result {
color: #00ff41;
font-size: 7px;
}
.power-series {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
}
.series-card {
background: rgba(247, 147, 30, 0.2);
padding: 15px;
border-radius: 8px;
border: 1px solid #f7931e;
}
.series-card h4 {
color: #f7931e;
font-size: 8px;
margin-bottom: 8px;
}
.navigation {
position: fixed;
top: 20px;
right: 20px;
background: rgba(26, 26, 46, 0.9);
padding: 15px;
border-radius: 8px;
border: 1px solid #00ff41;
z-index: 1000;
}
.nav-link {
display: block;
color: #00ff41;
text-decoration: none;
font-size: 7px;
margin-bottom: 8px;
padding: 5px;
border-radius: 3px;
transition: background 0.3s;
}
.nav-link:hover {
background: rgba(0, 255, 65, 0.2);
color: #fff;
}
.highlight {
background: linear-gradient(90deg, #ff6b35, #f7931e);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: bold;
}
.pixel-border {
border-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8'><rect width='8' height='8' fill='%2300ff41'/></svg>") 2;
}
@media (max-width: 768px) {
.container {
padding: 10px;
}
.navigation {
position: relative;
margin-bottom: 20px;
}
.header h1 {
font-size: 12px;
}
.formula {
font-size: 10px;
}
}
</style>
</head>
<body>
<div class="navigation">
<a href="#sequences" class="nav-link">Sequences</a>
<a href="#series" class="nav-link">Series</a>
<a href="#convergence" class="nav-link">Convergence</a>
<a href="#power-series" class="nav-link">Power Series</a>
<a href="#taylor" class="nav-link">Taylor/Maclaurin</a>
</div>
<div class="container">
<div class="header">
<h1>MAT 266 Chapter 8 Cheat Sheet</h1>
<p>Sequences • Series • Convergence • Power Series • Taylor/Maclaurin</p>
</div>
<section id="sequences" class="section">
<h2>8.1 Sequences</h2>
<div class="subsection">
<h3>Sequence Behavior</h3>
<div class="formula">
For sequence a<sub>n</sub>:
<br>• Converges if lim(n→∞) a<sub>n</sub> = L (finite)
<br>• Diverges if limit doesn't exist or is ±∞
<br>• Oscillates if it alternates between values
</div>
<div class="formula">
Common Limits:
<br>• lim(n→∞) 1/n = 0
<br>• lim(n→∞) r<sup>n</sup> = 0 if |r| < 1
<br>• lim(n→∞) r<sup>n</sup> = ∞ if r > 1
</div>
</div>
</section>
<section id="series" class="section">
<h2>8.2 Infinite Series</h2>
<div class="subsection">
<h3>Series Convergence</h3>
<div class="formula">
∞
∑ a<sub>n</sub> = a<sub>1</sub> + a<sub>2</sub> + a<sub>3</sub> + ...
n=1
<br><br>
Converges if lim(n→∞) S<sub>n</sub> = L (finite)
<br>where S<sub>n</sub> = partial sum = a<sub>1</sub> + a<sub>2</sub> + ... + a<sub>n</sub>
</div>
<div class="formula">
Geometric Series:
<br>∞
<br>∑ ar<sup>n-1</sup> = a + ar + ar² + ar³ + ...
<br>n=1
<br><br>
Converges to a/(1-r) if |r| < 1
<br>Diverges if |r| ≥ 1
</div>
</div>
</section>
<section id="convergence" class="section">
<h2>8.4 Convergence Tests</h2>
<div class="test-list">
<div class="test-item">
<h4>Ratio Test</h4>
<div class="condition">
L = lim(n→∞) |a<sub>n+1</sub>/a<sub>n</sub>|
</div>
<div class="result">
• L < 1: Converges absolutely<br>
• L > 1: Diverges<br>
• L = 1: Test fails
</div>
</div>
<div class="test-item">
<h4>Root Test</h4>
<div class="condition">
L = lim(n→∞) ⁿ√|a<sub>n</sub>|
</div>
<div class="result">
• L < 1: Converges absolutely<br>
• L > 1: Diverges<br>
• L = 1: Test fails
</div>
</div>
<div class="test-item">
<h4>Integral Test</h4>
<div class="condition">
If f(x) ≥ 0, decreasing, continuous
</div>
<div class="result">
∞ ∞<br>
∑ f(n) and ∫ f(x)dx<br>
n=1 1<br>
both converge or both diverge
</div>
</div>
<div class="test-item">
<h4>Comparison Test</h4>
<div class="condition">
0 ≤ a<sub>n</sub> ≤ b<sub>n</sub> for all n
</div>
<div class="result">
• If ∑b<sub>n</sub> converges → ∑a<sub>n</sub> converges<br>
• If ∑a<sub>n</sub> diverges → ∑b<sub>n</sub> diverges
</div>
</div>
</div>
</section>
<section id="power-series" class="section">
<h2>8.5 Power Series</h2>
<div class="subsection">
<h3>Interval & Radius of Convergence</h3>
<div class="formula">
∞
∑ c<sub>n</sub>(x - a)<sup>n</sup> = c<sub>0</sub> + c<sub>1</sub>(x-a) + c<sub>2</sub>(x-a)² + ...
n=0
</div>
<div class="formula">
Radius of Convergence R:
<br>Using Ratio Test: R = lim(n→∞) |c<sub>n</sub>/c<sub>n+1</sub>|
<br>Or: R = 1/lim(n→∞) |c<sub>n+1</sub>/c<sub>n</sub>|
<br><br>
Interval: (a-R, a+R)
<br>Check endpoints separately!
</div>
</div>
</section>
<section class="section">
<h2>8.6 Functions as Power Series</h2>
<div class="power-series">
<div class="series-card">
<h4>Basic Series</h4>
<div class="formula">
1/(1-x) = ∑ x<sup>n</sup> for |x| < 1
<br><br>
1/(1+x) = ∑ (-1)<sup>n</sup>x<sup>n</sup> for |x| < 1
</div>
</div>
<div class="series-card">
<h4>Substitution Method</h4>
<div class="formula">
Replace x with u in basic series
<br><br>
Example: 1/(1-x²)
<br>= ∑ (x²)<sup>n</sup> = ∑ x<sup>2n</sup>
</div>
</div>
<div class="series-card">
<h4>Integration Method</h4>
<div class="formula">
ln(1+x) = ∫ 1/(1+x) dx
<br>= ∫ ∑(-1)<sup>n</sup>x<sup>n</sup> dx
<br>= ∑ (-1)<sup>n</sup>x<sup>n+1</sup>/(n+1)
</div>
</div>
<div class="series-card">
<h4>Differentiation Method</h4>
<div class="formula">
If f(x) = ∑ c<sub>n</sub>x<sup>n</sup>
<br>then f'(x) = ∑ nc<sub>n</sub>x<sup>n-1</sup>
</div>
</div>
</div>
</section>
<section id="taylor" class="section">
<h2>8.7 Taylor & Maclaurin Series</h2>
<div class="subsection">
<h3>General Formulas</h3>
<div class="formula">
Taylor Series (about x = a):
<br>f(x) = ∑ f<sup>(n)</sup>(a)/n! · (x-a)<sup>n</sup>
<br>= f(a) + f'(a)(x-a) + f''(a)(x-a)²/2! + ...
</div>
<div class="formula">
Maclaurin Series (about x = 0):
<br>f(x) = ∑ f<sup>(n)</sup>(0)/n! · x<sup>n</sup>
<br>= f(0) + f'(0)x + f''(0)x²/2! + f'''(0)x³/3! + ...
</div>
</div>
<div class="subsection">
<h3>Common Maclaurin Series</h3>
<div class="power-series">
<div class="series-card">
<div class="formula">
e<sup>x</sup> = ∑ x<sup>n</sup>/n!
<br>= 1 + x + x²/2! + x³/3! + ...
</div>
</div>
<div class="series-card">
<div class="formula">
sin(x) = ∑ (-1)<sup>n</sup>x<sup>2n+1</sup>/(2n+1)!
<br>= x - x³/3! + x⁵/5! - ...
</div>
</div>
<div class="series-card">
<div class="formula">
cos(x) = ∑ (-1)<sup>n</sup>x<sup>2n</sup>/(2n)!
<br>= 1 - x²/2! + x⁴/4! - ...
</div>
</div>
<div class="series-card">
<div class="formula">
(1+x)<sup>k</sup> = ∑ (k choose n)x<sup>n</sup>
<br>= 1 + kx + k(k-1)x²/2! + ...
</div>
</div>
</div>
</div>
</section>
<div class="section">
<h2 class="highlight">Quick Reference</h2>
<div class="formula">
<strong>Test Checklist:</strong><br>
1. Check if it's geometric (easy win!)<br>
2. Try ratio test for factorials/exponentials<br>
3. Use root test for nth powers<br>
4. Check endpoints for power series<br>
5. Remember: convergence ≠ absolute convergence
</div>
</div>
</div>
<script>
// Add some interactive 8-bit effects
document.addEventListener('DOMContentLoaded', function() {
const sections = document.querySelectorAll('.section');
sections.forEach(section => {
section.addEventListener('mouseenter', function() {
this.style.transform = 'scale(1.02)';
this.style.transition = 'transform 0.3s ease';
});
section.addEventListener('mouseleave', function() {
this.style.transform = 'scale(1)';
});
});
// Smooth scrolling for navigation
document.querySelectorAll('.nav-link').forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
target.scrollIntoView({ behavior: 'smooth' });
});
});
});
</script>
</body>
</html>