You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The above result did not verify by differentiating the antiderivative.
Maxima:
(%i12) integrate (cos (d*x + c)^(7/3)/sqrt (b*cos (d*x + c) + a), x);
/ 7/3
[ cos(d x + c)
(%o12) I ------------------------ dx
] sqrt(b cos(d x + c) + a)
/
The above is the correct result, since this integral is supposed to be non integrable.
The above result did not verify by differentiating the antiderivative.
Maxima:
(%i13) integrate (cos (d*x + c)^(2/3)/sqrt (b*cos (d*x + c) + a), x);
/ 2/3
[ cos(d x + c)
(%o13) I ------------------------ dx
] sqrt(b cos(d x + c) + a)
/
The above is the correct result, since this integral is supposed to be non integrable.
Example 8
sage: var('B A f x e b a c m')
(B, A, f, x, e, b, a, c, m)
sage: integrate((B*cos(f*x+e)+A)*(b*cos(f*x+e)+a)^(3/2)*(c*cos(f*x+e))^m,x)
1/3465*(385*(a^3*c^m*sin(9/2*f*x + 9/2*e) - 3*a^3*c^m*sin(3/2*f*x + 3/2*e))*2^(-m - 5/2)*A + 4*(231*a^3*sin(15/2*f*x + 15/2*e) + 630*a^3*sin(11/2*f*x + 11/2*e) - 770*a^3*sin(9/2*f*x + 9/2*e) + 495*a^3*sin(7/2*f*x + 7/2*e) - 2079*a^3*sin(5/2*f*x + 5/2*e) + 1155*a^3*sin(3/2*f*x + 3/2*e))*2^(-m - 13/2)*B)/f
The above result did not verify by differentiating the antiderivative.
Maxima:
(%i15) integrate((B*cos(f*x+e)+A)*(b*cos(f*x+e)+a)^(3/2)*(c*cos(f*x+e))^m,x);
/
[ m 3/2
(%o15) I (c cos(f x + e)) (B cos(f x + e) + A) (b cos(f x + e) + a) dx
]
/
The above is the correct result, since this integral is supposed to be non integrable.
The above result did not verify by differentiating the antiderivative.
Maxima:
(%i16) integrate((B*cos(f*x+e)+A)*sqrt(b*cos(f*x+e)+a)*(c*cos(f*x+e))^m,x);
/
[ m
(%o16) I (c cos(f x + e)) (B cos(f x + e) + A) sqrt(b cos(f x + e) + a) dx
]
/
The above is the correct result, since this integral is supposed to be non integrable.
The above result did not verify by differentiating the antiderivative.
Maxima:
(%i17) integrate((B*cos(f*x+e)+A)*(b*cos(f*x+e)+a)^(3/2)*(c*sec(f*x+e))^m,x);
/
[ 3/2 m
(%o17) I (B cos(f x + e) + A) (b cos(f x + e) + a) (c sec(f x + e)) dx
]
/
The above is the correct result, since this integral is supposed to be non integrable.
The above result did not verify by differentiating the antiderivative.
Maxima:
(%i18) integrate((B*cos(f*x+e)+A)*sqrt(b*cos(f*x+e)+a)*(c*sec(f*x+e))^m,x);
/
[ m
(%o18) I (B cos(f x + e) + A) sqrt(b cos(f x + e) + a) (c sec(f x + e)) dx
]
/
The above is the correct result, since this integral is supposed to be non integrable.
The situation has improved some. Maxima knows that it can't compute the integrals from examples 2 through 11, but the fallback integrators aren't having much luck on my machine. Without algorithm="maxima", I've been waiting for like half an hour to get results back.
I was told to report this here.
There seems to be an old bug related to this issue #12731
When using default setting of SageMath for integrate, Maxima produces many wrong integral results.
Here are few examples of many I have:
Example 1
The above is clearly wrong, since the anti dropped/missing the parameters
d,a,b
in the integrand.in Maxima
Example 2
The above is clearly wrong, since the anti dropped/missing the parameters
d,a,b
in the integrand.Using Maxima
The above is the correct result, since this integral is supposed to be non integrable.
Example 3
The above result did not verify by differentiating the antiderivative.
Using Maxima
The above is the correct result, since this integral is supposed to be non integrable.
example 4
The above result did not verify by differentiating the antiderivative.
Using Maxima
The above is the correct result, since this integral is supposed to be non integrable.
Example 5
The above result did not verify by differentiating the antiderivative.
Maxima:
The above is the correct result, since this integral is supposed to be non integrable.
Example 6
The above result did not verify by differentiating the antiderivative.
Maxima:
The above is the correct result, since this integral is supposed to be non integrable.
Example 7
The above result did not verify by differentiating the antiderivative.
Maxima:
The above is the correct result, since this integral is supposed to be non integrable.
Example 8
The above result did not verify by differentiating the antiderivative.
Maxima:
The above is the correct result, since this integral is supposed to be non integrable.
Example 9
The above result did not verify by differentiating the antiderivative.
Maxima:
The above is the correct result, since this integral is supposed to be non integrable.
Example 10
The above result did not verify by differentiating the antiderivative.
Maxima:
The above is the correct result, since this integral is supposed to be non integrable.
Example 11
The above result did not verify by differentiating the antiderivative.
Maxima:
The above is the correct result, since this integral is supposed to be non integrable.
reference: https://ask.sagemath.org/question/43088/integrate-results-that-are-different-from-using-maxima/
CC: @rwst @kcrisman @sagetrac-tmonteil @orlitzky
Component: symbolics
Keywords: integrate, maxima, abs_integrate
Issue created by migration from https://trac.sagemath.org/ticket/25904
The text was updated successfully, but these errors were encountered: