diff options
author | sanine <sanine.not@pm.me> | 2022-08-18 20:52:26 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-08-18 20:52:26 -0500 |
commit | b8147afcc5bfbeb5fad62e4f68f1b88fc6c60d96 (patch) | |
tree | 8e5b63933b05a54bc2e74160fd2d53354a23f3d4 /libs/lua-5.1.5/test/bisect.lua | |
parent | de97d73a33ee3c1e2fe325b0cff90f079519bb36 (diff) |
add lua-5.1.5 files
Diffstat (limited to 'libs/lua-5.1.5/test/bisect.lua')
-rw-r--r-- | libs/lua-5.1.5/test/bisect.lua | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libs/lua-5.1.5/test/bisect.lua b/libs/lua-5.1.5/test/bisect.lua new file mode 100644 index 0000000..f91e69b --- /dev/null +++ b/libs/lua-5.1.5/test/bisect.lua @@ -0,0 +1,27 @@ +-- bisection method for solving non-linear equations + +delta=1e-6 -- tolerance + +function bisect(f,a,b,fa,fb) + local c=(a+b)/2 + io.write(n," c=",c," a=",a," b=",b,"\n") + if c==a or c==b or math.abs(a-b)<delta then return c,b-a end + n=n+1 + local fc=f(c) + if fa*fc<0 then return bisect(f,a,c,fa,fc) else return bisect(f,c,b,fc,fb) end +end + +-- find root of f in the inverval [a,b]. needs f(a)*f(b)<0 +function solve(f,a,b) + n=0 + local z,e=bisect(f,a,b,f(a),f(b)) + io.write(string.format("after %d steps, root is %.17g with error %.1e, f=%.1e\n",n,z,e,f(z))) +end + +-- our function +function f(x) + return x*x*x-x-1 +end + +-- find zero in [1,2] +solve(f,1,2) |