var fDesc=new Array(); fDesc[0] = "Easy Equation Solver is a simple and easy to use program for solving equations. You can save equations and solutions to a text file. Also, you can create the list of equations and generate a report. The report can be printed and exported to a PDF, HTML and RTF file.
The program can solve:
- Quadratic Equation.
- Cubic Equation.
- Equation with 1 Unknown.
- 2 Equations with 2 Unknowns.
- 3 Equations with 3 Unknowns.
- Determinant 2x2.
- Determinant 3x3.
- Determinant 4x4.
- Inverse of a 2x2 Matrix.
- Inverse of a 3x3 Matrix.
- Inverse of a 4x4 Matrix."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }