Re: Q: solving for 2 variables (beginner)
- To: mathgroup at smc.vnet.net
- Subject: [mg27050] Re: [mg27026] Q: solving for 2 variables (beginner)
- From: Tomas Garza <tgarza01 at prodigy.net.mx>
- Date: Thu, 1 Feb 2001 03:00:39 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Surely you need more in order to get a proper solution. But the idea
would be something like
In[1]:=
Solve[3x + 4 - Im == 10 + (2 + y) Im, {x, y}]
Solve::"svars": "Equations may not give solutions for all \"solve\" \
variables."
Out[1]=
{{x -> (2 + Im) + Im y/3}}
(where Im stands for imaginary i). As you would expect, this simple
expresses x in terms of y.
Tomas Garza
Mexico City
----- Original Message -----
From: "nsnn" <mailto:dontreply at tothis.ok>
To: mathgroup at smc.vnet.net
Subject: [mg27050] [mg27026] Q: solving for 2 variables (beginner)
> Hi.
>
> I am new to this program, and I have ordered the book...
>
> But here is something simple and I am not sure how to enter it...
>
> solve for x and y
> Im is imaginary (italic i)
>
> 3x + 4 -Im = 10 + (2+y)Im
>
> Thanks!