I'm trying to solve the following equation:
125/36 = -p^2 + 2p
however, I get empty array.
code to replicate:
let leftSide = new Expression(125).divide(36);
let rightSide = algebra.parse("-p^2 + 2p");
let equation = new Equation(leftSide, rightSide);
let solvedAnswers = equation.solveFor("p");
Hello,
I'm trying to solve the following equation: 125/36 = -p^2 + 2p
however, I get empty array.
code to replicate:
Am I missing something? Thank you