Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

fix: hadnle zeros at the endpoints inBisectionMethod#1640

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletionsMaths/BisectionMethod.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -23,7 +23,7 @@ const findRoot = (a, b, func, numberOfIterations) => {

// Bolzano theorem
const hasRoot = (a, b, func) => {
return func(a) * func(b) < 0
return func(a) * func(b) <= 0
}
if (hasRoot(a, b, func) === false) {
throw Error(
Expand All@@ -45,10 +45,9 @@ const findRoot = (a, b, func, numberOfIterations) => {
const prod2 = fm * func(b)

// Depending on the sign of the products above, decide which position will m fill (a's or b's)
if (prod1 > 0 && prod2 < 0) return findRoot(m, b, func, --numberOfIterations)
else if (prod1 < 0 && prod2 > 0)
return findRoot(a, m, func, --numberOfIterations)
else throw Error('Unexpected behavior')
if (prod2 <= 0) return findRoot(m, b, func, --numberOfIterations)

return findRoot(a, m, func, --numberOfIterations)
}

export { findRoot }
18 changes: 10 additions & 8 deletionsMaths/test/BisectionMethod.test.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
import { findRoot } from '../BisectionMethod'

test('Equation f(x) = x^2 - 3*x + 2 = 0, has root x = 1 in [a, b] = [0, 1.5]', () => {
const root = findRoot(
0,
1.5,
(x) => {
return Math.pow(x, 2) - 3 * x + 2
},
8
)
const root = findRoot(0, 1.5, (x) => x ** 2 - 3 * x + 2, 8)
expect(root).toBe(0.9990234375)
})

Expand All@@ -35,3 +28,12 @@ test('Equation f(x) = sqrt(x) + e^(2*x) - 8*x = 0, has root x = 0.93945851 in [a
)
expect(Number(Number(root).toPrecision(8))).toBe(0.93945851)
})

test('Equation f(x) = x^3 = 0, has root x = 0.0 in [a, b] = [-1.0, 1.0]', () => {
const root = findRoot(-1.0, 1.0, (x) => x ** 3, 32)
expect(root).toBeCloseTo(0.0, 5)
})

test('Throws an error when function does not change sign', () => {
expect(() => findRoot(-1.0, 1.0, (x) => x ** 2, 10)).toThrowError()
})

[8]ページ先頭

©2009-2025 Movatter.jp