-3

I need to solve below equation for the x using mathematica,basically i need numberical values for x,interms of A,B,K,a and b

Ax^(-a)+Bx^(-a-b)=K

Blender
  • 257,973
  • 46
  • 399
  • 459
  • 1
    Okay, what have you tried? The best Sage can do for five variables is this: `x^b = (K*x^(a + b) - B)/A` – Blender Aug 22 '12 at 04:24
  • There's a page on [numerical equation solving](http://reference.wolfram.com/mathematica/tutorial/NumericalEquationSolving.html) on the Mathematica site. – Snowball Aug 22 '12 at 04:26

1 Answers1

2

If you're looking for numeric solutions in Mathematica, check out its NSolve function (documentation here). For example:

x = NSolve[A x^(-a) + B x^(-a - b) == K, x]

Of course, to use a numeric solver, you'll have to have already set numeric values for the five variables in question.

That's a vague answer to a vague question -- if you give us more information, we may be able to give you more specific, and more helpful advice.

Etaoin
  • 7,678
  • 2
  • 24
  • 43