I am trying to build an expression parser which evaluates the value of a mathematical expression. However the problem is for certain categories of expression which evaluates to an irrational number.
Lets take an example such as (√2)²
This should evaluate to 2 .However due to the logic the program is coded it returns a fractional point number.
First √2 is evaluated which equals 1.4142135 and then the result is squared giving 1.9999998
Presently, what all could do is to send the expression to Mathematica via JLink and then use the result. However this takes the help of a third party software.
I want to know if this whole thing can be implemented in java.
