Hello
I've a problem with this semplification .. I have this expression:
6 + c (3 + c)
as a result, I want the expression:
6 + 3c + c^2
What can I do ?
Thanks
Galasi
Sorry .. I solved this way:
String total = ml.evaluateToInputForm("Expand[6 + c (3 + c)]", 0);
G
It Works! :-)
Very Thanks
Hello Galasi,
You can expand your expression using
Expand[6 + c (3 + c)]
Cheers, Xavier