Gregg
- 452
- 0
How would I solve y'(x) = \frac{1}{x^N+1} ?
Probably.jostpuur said:I see that when N is chosen and fixed, the task can be completed with finite amount of effort. But is there more general results? Is there theory about these coefficients that you encounter in fractional decomposition?
ross_tang said:Actually, this integral can be computer if N is integer, without using hypergeometric function.
\int \frac{dx}{x^N+ a}=\sum _{k=0}^{N-1} b_k\ln \left(x-(-a)^{\frac{1}{N}}e^{\frac{2k \pi }{N}i}\right)
and
b_n=\frac{1}{(-a)^{\frac{N-1}{N}}\prod _{\underset{j\neq k}{j=0}}^{N-1} \left(e^{\frac{2n \pi }{N}i}-e^{\frac{2j \pi }{N}i}\right)}
Please refer to this http://www.voofie.com/content/82/how-to-find-the-integral-of-1xna/" for step by step details.
Gregg said:If N is an integer isn't this even simpler?
y=\int \frac{1}{x^N+1} dx
y=\int (1-x^N+x^{2N}-x^{3N}+O(x^{4N})) dx
y=x-\frac{x^{N+1}}{N+1}+\frac{x^{2N+1}}{2N+1}-\frac{x^{3N+1}}{3N+1}+O(x^{4N+1})
y=\displaystyle \sum_{k=0}^{\infty} \frac{x^{kN+1}}{kN+1}
ross_tang said:Actually, this integral can be computer if N is integer, without using hypergeometric function.
\int \frac{dx}{x^N+ a}=\sum _{k=0}^{N-1} b_k\ln \left(x-(-a)^{\frac{1}{N}}e^{\frac{2k \pi }{N}i}\right)
and
b_n=\frac{1}{(-a)^{\frac{N-1}{N}}\prod _{\underset{j\neq k}{j=0}}^{N-1} \left(e^{\frac{2n \pi }{N}i}-e^{\frac{2j \pi }{N}i}\right)}
Please refer to this http://www.voofie.com/content/82/how-to-find-the-integral-of-1xna/" for step by step details.
ross_tang said:I am sorry. I have little bit of typo in the answer.
It should be like this:
<br /> \Rightarrow b_k=\frac{1}{(-a)^{\frac{N-1}{N}}\prod _{\underset{j\neq k}{j=0}}^{N-1} \left(e^{\frac{2k \pi }{N}i}-e^{\frac{2j \pi }{N}i}\right)}<br />
You don't understand why there is a factor of (-a)^{\frac{N-1}{N}}. Actually it is just property of the product notation.
The step you missed is this one:
<br /> \prod _{\underset{j\neq k}{j=0}}^{N-1} \left(\sqrt[N]{A}e^{\frac{\theta }{N}i}\left(e^{\frac{2 n \pi }{N}i}-e^{\frac{2j \pi }{N}i}\right)\right)<br />
<br /> \Rightarrow \left(\sqrt[N]{A}e^{\frac{\theta }{N}i}\right)^{N-1}\prod _{\underset{j\neq k}{j=0}}^{N-1} \left(e^{\frac{2 n \pi }{N}i}-e^{\frac{2j \pi }{N}i}\right)<br />
When you take out a factor in the product sign, you are not just taking 1 factor out. Since in the product, there are N-1 factors, so you are take N-1 factors out instead. Hope you can understand.
JJacquelin said:Hello !
in order to find a primitive of 1/((x^N)+1), let t=x^N and z = y/x
where z(x) is the new function to find.
This leads to z as an Euler's hypergeometric integral with variable t.
Finally, back to y and x, we obtain the solution :
y = x*F(a,b;c;X) + constant
where F is the Gauss hypergeometric function (usually noted 2F1 in the hypergeometric functions classification)
a = 1
b = 1/N
c =1+(1/N)
X = -x^N
Using the general series definition of the hypergeometric function, it is easy to express y(x) in terms of a rather simple infinite series.
JJacquelin said:Hello !
in order to find a primitive of 1/((x^N)+1), let t=x^N and z = y/x
where z(x) is the new function to find.
This leads to z as an Euler's hypergeometric integral with variable t.
Finally, back to y and x, we obtain the solution :
y = x*F(a,b;c;X) + constant
where F is the Gauss hypergeometric function (usually noted 2F1 in the hypergeometric functions classification)
a = 1
b = 1/N
c =1+(1/N)
X = -x^N
Using the general series definition of the hypergeometric function, it is easy to express y(x) in terms of a rather simple infinite series.
Gregg said:Is a_j = \frac{z_j}{N} ?
Is it supposed to be obvious?
jackmell said:No. It's not that. My a_j is just the coefficients of the partial fraction decomposition. Ross in post 10 showed a compact way of computing these coefficients which he called b_n which looks like he's using the Residue Theorem to compute: the coefficients are just the residues for each zero (pole). And my z_j are the roots of x^N+1. Sorry I didn't make that more clear above.
I suggest you read post 9 by Gregg.
May be apparently !A point was made about a finite series being more desireable though.
Gregg said:Oh right I just thought that it was since
\frac{1}{3 (z-1)}-\frac{(-1)^{1/3}}{3 \left(z+(-1)^{1/3}\right)}+\frac{(-1)^{2/3}}{3 \left(z-(-1)^{2/3}\right)} = \frac{1}{z^3-1}
and
-\frac{1}{4(z+1)}+\frac{1}{4(z-1)}-\frac{i}{4(z+i)}+\frac{i}{4(z-i)}=\frac{1}{z^4-1}
Is that true for the general case? If so, sorry if I said it wasn't.