-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfalse_position.html
More file actions
28 lines (23 loc) · 1.13 KB
/
false_position.html
File metadata and controls
28 lines (23 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<title>False Position</title>
<script async="" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/MathJax.js?config=TeX-MML-AM_CHTML" type="text/javascript">
MathJax.Hub.Config({
jax: ["input/TeX","output/HTML-CSS"],
displayAlign: "left"
});
</script>
</head>
<body style="background-color:khaki">
<h3>False Position</h3><br>
   This Windows desktop application solves the root-finding problem using the False Position method. The algorithm has been extended from the traditional False Position method, allowing it to find all roots simultaneously.<br><br>
<b>False Position formula :</b>
\[c_i=b_i-\frac { f(b_i)(b_i-a_i)} { f(b_i)-f(a_i) }\]<br>
<img src="image/false_ss1.jpg" width="710" height="649"><br>
<img src="image/false_ss2.jpg" width="687" height="219"><br>
<img src="image/false_ss3.jpg" width="644" height="459"><br> <br>
File download (included source code in Lazarus) is : ExtendedFalsePositionScLazarus.rar at
<a href="https://bitbucket.org/nixz97/nix/downloads/" target="_blank">Download here</a><br><br><br>
</body>
</html>