Questions tagged [series-expansion]
Questions on dealing with series data and constructing power series expansions of functions.
953 questions
6
votes
9
answers
223
views
Reducing a symbolic expression to only its lowest-order terms
Suppose I have an expression which is a collection of symbols and integers arbitrarily combined with Plus and Times. For example,...
0
votes
2
answers
117
views
Approximately solving this equation among probabilities/LLRs symbolically
Consider three independent Bernoulli events $A, B, C$ with success probabilities $p, q$ and $r$ respectively. Let us define two more derived events $L$ and $M$ with probabilities $p_1$ and $p_2$ given ...
5
votes
1
answer
188
views
Can series expansion variable be substituted with numeric value?
The documentation page for Series under the section Possible issues states that
"Numeric values cannot be substituted directly for the expansion variable in a ...
0
votes
1
answer
298
views
Expansion of standard inverse normal cdf
Let $\Phi: x\rightarrow y$ be the CDF of a standard normal distribution. The range of $\Phi(x)$ is $[0,1]$ and the domain is all real numbers.
I want to get a series expansion of $\Phi^{-1}(y)$ around ...
5
votes
3
answers
241
views
How to determine the order of poles of a symbolic expression in Mathematica?
Consider the following trigonometric sum in Mathematica:
...
2
votes
0
answers
84
views
Error with series of spherical bessel SphericalBessel?
Below seems like some error in the spherical bessel series expansion around an arbitrary number a. All terms below should be equal. Except term1 is different from all the others!
...
4
votes
2
answers
274
views
Help with asymptotics on an interesting sum
I recently learned an interesting limit and was trying to understand the asymptotics. Unfortunately I'm getting nowhere.
Take ...
13
votes
2
answers
547
views
Why does Mathematica get the infinite sum of this representation of the taylor series of $\cos^2(x)$ wrong?
Bug introduced in 7.0, persisting through 14.3.
Mathematica correctly identifies this sum as $\cos(x)$:
Sum[((-1)^n x^(2 n))/(2 n)!, {n, 0, Infinity}]
Mathematica ...
0
votes
0
answers
44
views
Defining multilinear function series expansion
I want to define an abstract multilinear function mlfunc in arbitrary arguments with the standard algebraic and analytic properties.
Implementing algebraic ...
3
votes
2
answers
220
views
Finding asymptotes of a function defined by a relation of two variables
Based on this question, how does one analytically compute the asymptotes for the equation defined by:
$$(x+y+2)(x+y)^2 = x+9y-2 ?$$
I can easily plot the curve...
and can manipulate equation for ...
0
votes
0
answers
45
views
Inconsistent recurrence relation for Weierstrass sigma function double series between MathWorld and DLMF
There is a curious recurrence relation for double series of Weierstrass sigma function listed at DLMF defition 23.9.8
$$
a_{m,n} = 3(m+1) a_{m+1,n-1} + \frac{16}{3}(n+1) a_{m-2,n+1} - \frac{1}{3}(2m+...
0
votes
1
answer
197
views
Trying to invert a series in Mathematica
I have the function J in two variables $m$ and $l$, which I obtained doing a series for $e$ and replacing $m \rightarrow e\cdot m$ and $l\rightarrow e\cdot l$, given by
\begin{align}
J(l,m):=& -2 \...
1
vote
1
answer
79
views
Help to try and make my code finish running. Series of incomplete elliptic integrals
I have the following code
...
0
votes
0
answers
159
views
How to syntax products and append each result to a table?
I'm still trying to learn how to code the results of the LHS and RHS of this famous equation into a table:
$$\sum_{n=1}^\infty \frac1n=\prod_{i=1}^\infty\frac{1}{1-\frac{1}{p_i}}\tag{A}$$
I asked this ...
0
votes
0
answers
96
views
Result of Series inconsistent with requested order of expansion
Consider the following simple Series invocation,
Series[a*x^2, {x, 0, 1}]
In Mathematica 14.3 it returns
a*x^2+O[x]^3
This ...