MathGroup Archive 2012

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Mathematica issue

  • To: mathgroup at smc.vnet.net
  • Subject: [mg127848] Re: Mathematica issue
  • From: "Nasser M. Abbasi" <nma at 12000.org>
  • Date: Sun, 26 Aug 2012 05:45:30 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-newout@smc.vnet.net
  • Delivered-to: mathgroup-newsend@smc.vnet.net
  • References: <k1ch0q$n2j$1@smc.vnet.net>
  • Reply-to: nma at 12000.org

On 8/26/2012 3:18 AM, Nasser M. Abbasi wrote:
>>
>> I need analytical expression for the x in terms of A,B,C,D and a,b,
>>
>
> try this:
>
> parms = {A0 -> 1, B0 -> 2, a -> 3, C0 -> 4, D0 -> 5, b -> 6}
> eq    = A0 + B0 + x^a (C0 - D0 x^b) == 0
> sol   = Solve[eq /. parms, x]

Opps, just noticed you want symbolic solution.
Mathematica 8.04 does not do it. I doubt this can be solved symbolically.
Need to use some numbers for the parameters.

Clear[A0, B0, a , C0, D0 , b]
eq = A0 + B0 + x^a (C0 - D0 x^b) == 0
Solve[eq, x]

Solve::nsmet: This system cannot be solved with the methods available to Solve. >>

--Nasser





  • Prev by Date: Re: Mathematica issue
  • Next by Date: Re: Export Spoken Sound (Speak-> .wav file?)
  • Previous by thread: Re: Mathematica issue
  • Next by thread: Re: Mathematica issue