Re: output forms
- To: mathgroup at smc.vnet.net
- Subject: [mg121519] Re: output forms
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Sun, 18 Sep 2011 04:11:50 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Reply-to: hanlonr at cox.net
HoldForm[ d = a + b*c] /. {a -> 1, b -> 2, c -> 3}
HoldForm[ d = a + b*c] /. Thread[{a, b, c} -> Range[3]]
Bob Hanlon
---- klkj fukyfl <kitas11 at yahoo.com> wrote:
=============
Hello, I need Matheamtica to do the following:
in:
a=1;
b=2;
c=3;
d=a+b*c
out:
d=1+2*3
and so on...
previously I was using another system, but I found that this kind of stuff is impossible
Can this be performed on Mathematica?