Warning, unable to determine if ... is between ... and ...; try to use assumptions or use the AllSolutions option
Description
Examples
See Also
This warning appears only when the result will be piecewise due to one or more unknowns in the expression. Ideally, you should use assumptions, but sometimes you cannot determine the right assumptions.
When you use the AllSolutions option, Maple assumes that all parameters are real and will try to return an piecewise answer, which covers all possible cases. By using the AllSolutions option, you can use the piecewise answer to determine what assumptions you must make on the parameters.
Note: The answer is likely to be large and it may take longer to compute this answer.
∫1b1x−aⅆx
Warning, unable to determine if a is between 1 and b; try to use assumptions or use the AllSolutions option
int1/x−a, x = 1..b
Solution 1: Use assumptions.
∫1b1x−aⅆx assuming 1 < a, a < b
undefined
∫1b1x−aⅆx assuming 1 < b, a > b
−ln⁡a−1+ln⁡a−b
Solution 2: Use the AllSolutions option.
By using the AllSolutions option, int returns the entire set of solutions for the specified definite integral. This applies primarily to parameters in the endpoints of the interval, not to parameters in the integrand.
Note: To specify options, use the int calling sequence.
int1/x−a, x = 1..b, AllSolutions;
{{undefinedAnd⁡1<ℜ⁡a,ℜ⁡a<b{∞a=1−ln⁡a−1otherwise+{−∞b=aln⁡a−botherwiseotherwise1<b0b=1−{undefinedAnd⁡b<ℜ⁡a,ℜ⁡a<1−{−∞b=aln⁡a−botherwise+{−∞a=1ln⁡a−1otherwiseotherwiseb<1
assuming , int/details
Download Help Document