Skip to content

calebeby/math-thing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

-(x + y) + z * (-x * -y) + y
Simplify parentheses and negative signs:
  Distribute negative signs into parentheses:
    -(x + y) + z * (-x * -y) + y
    ^^^^^^^^
    -x - y + z * -x * -y + y

  Remove unneeded parentheses:
    -x - y + z * (-x * -y) + y
                 ^^^^^^^^^
    -x - y + z * -x * -y + y

  Cancel negative signs multiplied by each other:
    -x - y + z * -x * -y + y
                 ^^   ^^
    -x - y + z * x * y + y

Cancel terms that are both added and subtracted:

  Cancel -y and +y:
    -x - y + z * x * y + y
         ^               ^
    -x + z * x * y
(((x * y))) + (x * y)
Simplify parentheses and negative signs:
  Remove unneeded parentheses:
    (((x * y))) + (x * y)
      ^^^^^^^
    ((x * y)) + (x * y)
     ^^^^^^^
    (x * y) + (x * y)
    ^^^^^^^
    x * y + (x * y)
            ^^^^^^^
    x + y + x * y

About

[wip] a computer algebra thing for learning purposes

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors