1

I need to find values of {a,b,c} such that the 0th, 2nd, and 4th order moments of f[x]=Exp[-ax^4 - bx^2 - c] will equal respectively {1,2,10}.

I didn't really expect this to work, and it didn't:

Solve[{
  Integrate[Exp[-a*x^4 - b*x^2 - c], {x, -Infinity, Infinity}] == 1,
  Integrate[(x^2)*Exp[-a*x^4 - b*x^2 - c], {x, -Infinity, Infinity}] == 2,
  Integrate[(x^4)*Exp[-a*x^4 - b*x^2 - c], {x, -Infinity, Infinity}] == 10},{a, b, c}]

Is there any clever way I can use Mathematica to solve this problem without having to write my own custom iterative solver? (I will settle for a non-clever way.)

J. M.'s missing motivation
  • 124,525
  • 11
  • 401
  • 574
Jerry Guern
  • 4,602
  • 18
  • 47

0 Answers0