custer
- 13
- 0
I'm told that this integration can't be solved, can it ?
ʃ dx/(sin (x) . exp((csc x)^2)
ʃ dx/(sin (x) . exp((csc x)^2)
The discussion revolves around the integration of the function 1/(sin(x) * exp(csc^2(x))). Participants explore whether this integral can be solved in terms of elementary functions, and they consider alternative approaches such as numerical integration and power series expansion.
Participants do not reach a consensus on whether the integral can be solved in elementary terms. Multiple competing views remain regarding the validity of numerical solutions and the definition of new functions based on the integral.
There are limitations regarding the assumptions made about the integrand and the conditions under which the proposed methods may be valid, such as the radius of convergence for the power series.
custer said:I'm told that this integration can't be solved, can it ?
ʃ dx/(sin (x) . exp((csc x)^2)
squidsoft said:Make it so. Suppose that was all you were told. What would you do? Numerically counts as "solved" in my book. How about a power series? Can I use that (in principle) and integrate over it's radius of convergence? Ain't that a "solution"? Find a way . . . try. That's what math is about. :)
f[x_] := 1/(Sin[x]*Exp[Csc[x]^2]);
tay[x_] := Normal[Series[f[x],
{x, Pi/2, 25}]]
cus[x_] = Integrate[tay[x], x]
N[cus[3*(Pi/4)] - cus[Pi/4]]
NIntegrate[f[x], {x, Pi/4, 3*(Pi/4)}]