Can I define the '$u = \dots$' for an integral?
For example when I integrate $\frac{x^3}{\sqrt{6 - x^2}}$ with respect to $x$, the program automatically sets $u = x^2$, how can I change this so it uses $u = (6 - x^2)$ or some other value?
Can I define the '$u = \dots$' for an integral?
For example when I integrate $\frac{x^3}{\sqrt{6 - x^2}}$ with respect to $x$, the program automatically sets $u = x^2$, how can I change this so it uses $u = (6 - x^2)$ or some other value?
It is not clear what you are trying to do
expr = x^3/Sqrt[6 - x^2];
int = Integrate[expr, x]
(* -(1/3) Sqrt[6 - x^2] (12 + x^2) *)
Checking that int is an anti-derivative of expr
expr == D[int, x] // Simplify
(* True *)
The change of variables u == (6 - x^2) does not change the result
Integrate[
(x^3/Sqrt[6 - x^2] /. x -> Sqrt[6 - u])* D[Sqrt[6 - u], u],
u] /. u -> 6 - x^2 // Simplify
(* -(1/3) Sqrt[6 - x^2] (12 + x^2) *)
You can add any arbitrary constant to int and still have a valid anti-derivative
DChange, but I think you need to write the integral as a differential equation. – Michael E2 May 13 '18 at 16:34