Skip to content

Commit 33a3237

Browse files
committed
modified: Math/arithmetic-harmonic_mean.sf
1 parent a4bc425 commit 33a3237

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Math/arithmetic-harmonic_mean.sf

+5-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
# Arithmetic-harmonic mean (AHM).
88

9+
# AHM is equivalent with the geometric mean: AHM(a, b) = sqrt(a * b)
10+
911
func AHM(a, h, p=100) {
1012

1113
loop {
@@ -23,6 +25,6 @@ func AHM(a, h, p=100) {
2325
}
2426
}
2527

26-
say AHM(1, 2) #=> sqrt(2)
27-
say AHM(2, 5) #=> sqrt(5) / sqrt(1/2)
28-
say AHM(3, 42) #=> sqrt(3) / sqrt(1/42)
28+
say AHM(1, 2) #=> sqrt(1 * 2)
29+
say AHM(2, 5) #=> sqrt(2 * 5)
30+
say AHM(3, 42) #=> sqrt(3 * 42)

0 commit comments

Comments
 (0)