RE: Symbolic Calculation
- To: mathgroup at smc.vnet.net
- Subject: [mg38735] RE: [mg38713] Symbolic Calculation
- From: "David Park" <djmp at earthlink.net>
- Date: Tue, 7 Jan 2003 07:27:02 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Ashraf, Solve[Y == C + M + v Y, Y] {{Y -> (C + M)/(1 - v)}} You must use == and not = in the equation, and you must leave a space between v and Y, as is all clearly explained in The Mathematica Book. You must also be a little wary of using capital letter symbols as some of them are reserved by Mathematica. David Park djmp at earthlink.net http://home.earthlink.net/~djmp/ From: Ashraf El Ansary [mailto:Elansary at btopenworld.com] To: mathgroup at smc.vnet.net Dear all, Does anyone know how to solve dynamic models using Mathematica. Example: Y= C+M+vY all I want to do is to get a symbolic solution to that equation i.e Y-vY=C+M Y=(C+M)/(1-v)!!! Thanks