Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 353 Bytes

README.md

File metadata and controls

9 lines (5 loc) · 353 Bytes

CanonicalForm

Project to transfomr formula to canonical form, e.g. : x^2+(3.5xy+y)=y^2-(xy + y) -> x^2-y^2+4.5xy+2y = 0

The main idea is to use Reverse Polish notation to move right side to the left.

Supported operations

Supports only add and subtract operations and round brackets.