I have an integral
$\int_a^b \! f(x) \, \mathrm{d}x = c$
where I know c and either a or b. Now I want to compute either b or a (i.e., the missing limit). How would I do that in Mathematica/Wolfram Alpha?
|
I have an integral $\int_a^b \! f(x) \, \mathrm{d}x = c$ where I know c and either a or b. Now I want to compute either b or a (i.e., the missing limit). How would I do that in Mathematica/Wolfram Alpha? |
||||
|
|
|
$\tt{Solve[Integrate[f[x], \{x, a, b\}] == c]}$ seems to work. Edit: |
|||||||||||||
|
|
Eivind answer will only solve the integral to c, but if you want to solve it for a or b you must add it into the Solve expression: For example:
Mathematica will answer:
etc... |
|||||||||||
|