Hi,
I am trying to create a simple "Manipulate" that takes in 2 fractions and then adds them. When I input the fractions I don't want them to simplify until they are added together. In other words, I just want the answer in simplified form. But the moment I input them and press enter... the fractions themselves reduce to simplified form. Is there a way to stop this from happening?
Manipulate[Row[{a, "+", b, "=", Simplify[a + b]}],
Row[{Control[{{a, 1/2, ""}}], Control[{{b, 1/2, ""}}]}]]