A simple polynomial calculator in lisp
|
|
10 jaren geleden | |
|---|---|---|
| LICENSE | 10 jaren geleden | |
| README.md | 10 jaren geleden | |
| poly.cl | 10 jaren geleden | |
| tests.cl | 10 jaren geleden |
A simple polynomial calculator in lisp
Polynomials are in the form '(((SYMBOL EXPONENT) MULTIPLIER) ((SYMBOL EXPONENT) MULTIPLIER))
For example this: '(((x 2) 5) ((((x y) (2 3)) 5))) \= 5x^2 + 5x^2y^3