Click here to Skip to main content
15,890,845 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am trying to make a java program which takes a formula as input and gives all the alternative form for writing that formula.

Example-Input(String)- v^2=u^2+2*a*s
Output(String)-u^2=v^2-2*a*s
a=(v^2-u^2)/2*s
s=(v^2-u^2)/2*a

If you could write a piece of code that changes and prints all the alternative forms of a formula that will be a great help. Thanks.

What I have tried:

I searched but found nothing other than rules to change subject of a formula. I could input all rules one by one in my code but it could be very time taking.
Posted
Updated 10-Apr-16 21:46pm

1 solution

Symbolic computation is a quite large and complex argument, I suggest you to start with the related Wikipedia's page: "Symbolic computation - Wikipedia, the free encyclopedia"[^].
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900