TODO 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # vim: set fileencoding=utf-8 :
  2. - Last possibilities reduce to a similar result.
  3. - ExpressionNode.equals() werkend maken voor alle cases (negatie).
  4. - Create unit tests for node inequivalence operator.
  5. - Line printer: 1 / (n + n)x -> 1 / (n + n) * x
  6. - Modules:
  7. + Equations with substitution
  8. + Gonio, no matches for sin(pi), sin(2pi), sin(4pi), etc...
  9. - Fix: int -cf(x) dx (caused infinite loop)
  10. Solution: remove baby steps that rewrites f(x) to f(x) ^ 1
  11. - Add backslash notation for special LaTeX symbols notation such as \pi?
  12. - Change integral representation in parser so that _ and ^ bounds are printed correctly by line printer.
  13. - Rewrite unit tests to use improved line printer syntax.
  14. - Add notation "1 1/3" for 'int with fraction' leafs, and rules to rewrite them to fractions and back.
  15. - frontend: replace 'dx' with '(dx)' with regex before sending to parser
  16. - "sin^2 x" is supported by parser, but not yet by line printer.
  17. #- To work 100% correctly, POW and SUB (^ and _) should have a precedence equal
  18. # to INTEGRAL when used for integral bounds.
  19. - Give FUNCTION higher precedence than POW? -> "sin(x) ^ 2 == (sin x) ^ 2"
  20. rather than "sin(x ^ 2)" (which it is now).
  21. - Add error message to exception in frontend.
  22. # The following now works:
  23. # "apia" no succesfully results in "a * pi * a"
  24. # int_(-3)^(3) \pi (3^2 - x^2) dx -> 36pi
  25. # int_(-r)^(r) \pi (r^2 - x^2) dx -> 4 / 3 * pi * r ^ 3
  26. # "&" instead of "^^"
  27. - [((x+3)^5+4)^2]': chain rule should be executed first
  28. - Missed rewrite possibility:
  29. (4x) / (2x ^ 2 - 2y ^ 2) -> (2x) / (x ^ 2 - y ^ 2)