Final Presentation
Final Presentation
x2 x3 x4 x5 x6 x7
Out[]= x+ + + + + +
2 3 4 5 6 7
In[ ]:= Sumx^ii,{i,7}
x2 x3 x4 x5 x6 x7
Out[]= x+ + + + + +
2 3 4 5 6 7
above example shows the starting point is default 1
In[ ]:= Sumx^ii,{i,8,6}
Out[]= 0
6
In[ ]:= SumConvergence[1 / n ^ 2, n]
Out[]= True
2 final presentation.nb
2 x1/4
In[ ]:= Product[x + i, {i, 1, 4}]
Out[]= (1 + x) × (2 + x) × (3 + x) × (4 + x)
Out[]= x2 + x3 + x4 + x5 + O[x]6
1 1 1 1
Out[]= 1, -1, ,- , ,-
2 6 24 120
Solving Equations Involving Power Series
In[ ]:= RSolve[{a[n + 1] n a[n] + a[n - 1], a[1] 0, a[2] 1}, a[n], n]
BesselI[n, -2] BesselK[1, 2] + BesselI[1, 2] BesselK[n, 2]
Out[]= a[n]
BesselI[2, 2] BesselK[1, 2] + BesselI[1, 2] BesselK[2, 2]
Q-Difference Equations
q-difference equations are those in which the arguments of a are related by multiplicative
factors.
In[ ]:= RSolve[a[q n] n a[n], a[n], n]
1 Log[n]
×-1+
Out[]= a[n] n 2 Log[q] 1
In[ ]:= RSolve[a[n] a[q n] + a[n / q], a[n], n]
π π
-
Out[]= a[n] n 3 Log[q] 1 + n 3 Log[q] 2
In[ ]:= RSolve[{a[n] b[n - 1] + n, b[n] a[n - 1] - n, a[1] b[1] 1}, {a[n], b[n]}, n]
1 1
Out[]= a[n] × 4 + 3 (-1)n + (-1)2 n + 2 (-1)2 n n, b[n] × 4 - 3 (-1)n + (-1)1+2 n - 2 (-1)2 n n
4 4
PARTIAL RECURRENCE EQN
Introduction to Residues
- Residues are defined in the context of complex analysis as the coefficient of the (
frac{1}{z-a} ) term in the Laurent series expansion of a function around a singular point ( a ).
This is essential for understanding how functions behave near points of singularity.
Basic Concepts
the `Residue` function in Mathematica and its basic syntax.
Residue[f, {z, z0}]
. Calculating Simple Residues
final presentation.nb 7
Introduction to Limits
In calculus, a limit is a fundamental concept that describes the behavior of a function as its
input (or variable) approaches a certain value.
Limits help us understand what happens to a function at a specific point, even if the function
is not explicitly defined at that point
Basic Limit Calculations
- how to calculate limits at a point
In[ ]:= Limit[x ^ 2, x 2]
Out[]= 4
One-sided Limits
- These are limits that approach a point from one direction—either from the left or the right.
- finding a right-hand limit and a left-hand limit.
In[ ]:= Limit[1 / x, x 0, Direction "FromAbove"]
Limit[1 / x, x 0, Direction "FromBelow"]
Out[]= ∞
Out[]= -∞
8 final presentation.nb
2x x2
1- +
5 20
Complex Functions
- Applying Pade approximations to more complex functions.
In[ ]:= PadeApproximantSin[x] x, {x, 0, {4, 5}}
53 x2 551 x4
1- +
396 166 320
Out[]=
13 x2 5 x4
1+ +
396 11 088
final presentation.nb 9
10 final presentation.nb