Skip to content

Commit

Permalink
Update simplify.test.ts
Browse files Browse the repository at this point in the history
ln(9) / ln(3) = 2
e · e^x · e^{-x} = e
  • Loading branch information
holgerengels authored Jul 10, 2024
1 parent 4e9c7ee commit 80d605f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/compute-engine/simplify.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ console.log(ce.parse('0.3').simplify().toString());
console.log(ce.parse('\\frac{\\sqrt5+1}{4}').simplify().toString());

const exprs: [Expression, Expression][] = [
['\\frac{\\ln{9}}{\\ln{3}}', 2],
['e e^x e^{-x}', 'e'],
['1+0', 1],
['x+0', 'x'],
['\\frac{\\sqrt5+1}{4}', '\\frac{\\sqrt5+1}{4}'],
Expand Down

0 comments on commit 80d605f

Please sign in to comment.