compute-engine icon indicating copy to clipboard operation
compute-engine copied to clipboard

Feature: Simplify/resolve system of equations

Open snowyu opened this issue 1 year ago • 2 comments

const expr = ce.parse(`\\begin{cases}x+y=70\\\\2x-4y=80\\end{cases}`);
console.log(expr.latex);
// \begin{cases}x+y=70&\top\\2x-4y=80&\top\end{cases}

Can a system of linear equations with multiple variables be simplified?

snowyu avatar Aug 23 '24 07:08 snowyu

This is not currently supported, but would make a great addition.

arnog avatar Aug 23 '24 14:08 arnog

Resolving a system of equations would be best served through matrix operations.

However, parsing has already a hard time to parse matrix operations to MathJSON (cfr. bug reporting in #251 )

cgrisar avatar Sep 30 '25 10:09 cgrisar