Skip to main content
Improved formatting
Source Link
m_goldberg
  • 108.6k
  • 16
  • 107
  • 263

How can I explicitexhibit the evaluation of formulas (Mathcad like)in a Mathcad-like way?

enter image description here

How can I create a function F that works like this:

in:=

 x=2 x f1=x^2+3 = f2=x+52 

in:=

 f1 = x^2 + F[f1]3 

out:=

 x^2+3=2^2+3=7f2=x+5 

in:=

    F[f2]F[f1] 

out:=

x^2 + 3 = 2^2 + 3 = 7 
  x+5=2+5=7F[f2] 
x + 5 = 2 + 5 = 7 

How can I explicit formulas (Mathcad like)?

enter image description here

How can I create a function F like this:

in:=

 x=2  f1=x^2+3  f2=x+5 

in:=

 F[f1] 

out:=

 x^2+3=2^2+3=7 

in:=

  F[f2] 

out:=

  x+5=2+5=7 

How can I exhibit the evaluation of formulas in a Mathcad-like way?

enter image description here

How can I create a function F that works like this:

 x = 2 f1 = x^2 + 3 f2=x+5    F[f1] 
x^2 + 3 = 2^2 + 3 = 7 
 F[f2] 
x + 5 = 2 + 5 = 7 
Tweeted twitter.com/#!/StackMma/status/405738559283687424
Source Link

How can I explicit formulas (Mathcad like)?

enter image description here

How can I create a function F like this:

in:=

 x=2 f1=x^2+3 f2=x+5 

in:=

 F[f1] 

out:=

 x^2+3=2^2+3=7 

in:=

 F[f2] 

out:=

 x+5=2+5=7