MathGroup Archive 2001

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

Search the Archive

Re: Help w/ Mathematica: simple stuff

  • To: mathgroup at smc.vnet.net
  • Subject: [mg30783] Re: [mg30764] Help w/ Mathematica: simple stuff
  • From: BobHanlon at aol.com
  • Date: Wed, 19 Sep 2001 00:16:23 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

In a message dated 2001/9/9 8:53:53 PM, sophtwarez at yahoo.com writes:

>I'm a mathematica novice and only doing basic calculus.  We have a
>question that is as follows:
>
>y[1]=a
>y'[x]=(r*y[x])/x
>
>Explain Mathematica output of...
>y[x]=ax^r
>
>I guess I don't understand what x is doing in the denominator.  The
>y[1]=a part is straight forward; when x is 1 then no matter what
>constant r is it will be 1.  I also know from my material that when
>y[x]=kE^rx then y'[x]=r*y[x].
>

DSolve[{y'[x] == (r*y[x])/x, y[1] == a}, y[x], x]

{{y[x] -> a*x^r}}

substituting for y[x] in y'[x] == r*y[x]/x

D[a*x^r, x] == r*(a*x^r)/x

True


Bob Hanlon
Chantilly, VA  USA


  • Prev by Date: Option FactorComplete->False in FactorInteger
  • Next by Date: C++ to Mathematica
  • Previous by thread: Help w/ Mathematica: simple stuff
  • Next by thread: Re: Help w/ Mathematica: simple stuff