如何用JavaScript解决复杂的方程式

时间:2018-07-22 09:37:18

标签: javascript

我的方程式

23/(x+3)  +[ (x-3)/(x+3) ] *2 = 57

我想用java-script求解x。是否有任何javascript库可以解决这些类型的方程式。谢谢您的帮助。

3 个答案:

答案 0 :(得分:1)

您可以使用此库algebra.js,但需要为表达式编写解析器,可以为此使用Peg.JS或自己编写解析器。仅使用少量令牌,就不那么难了。

答案 1 :(得分:1)

您可以使用此expression evaluator-它允许您将表达式传递到解析器中,该解析器返回一个函数对象,该函数对象可以评估为您提供的输入。

这是一个例子:

var expr = Parser.parse("2 ^ x");
expr.evaluate({ x: 3 }); // 8

答案 2 :(得分:0)

有一些 JavaScript 求解器可以在数值上解决您的问题。我所知道的非线性求解器是 Ceres.js。这是一个适用于您的问题的示例。我们要做的第一件事是重新排列成 F(x)=0 的形式。

x0 = -2.7999999997597933

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body>

<h2>User Function</h2>
<p>This is an example of the solution of a user supplied function using Ceres.js</p>

<textarea id="demo" rows="40" cols="170">
</textarea>

<script type="module">
    import {Ceres} from 'https://cdn.jsdelivr.net/gh/Pterodactylus/Ceres.js@master/Ceres-v1.5.3.js'

    var fn1 = function f1(x){
        //You have to rearrange your function to equal zero 23/(x[0]+3)+((x[0]-3)/(x[0]+3))*2=57
        return 23/(x[0]+3)+((x[0]-3)/(x[0]+3))*2-57;
    }
    
    let solver = new Ceres()
    solver.add_function(fn1) //Add the first equation to the solver.
    
    solver.promise.then(function(result) { 
        var x_guess = [1] //Guess the initial values of the solution.
        var s = solver.solve(x_guess) //Solve the equation
        var x = s.x //assign the calculated solution array to the variable x
        document.getElementById("demo").value = s.report //Print solver report
        solver.remove() //required to free the memory in C++
    })
</script>
</body>
</html>