aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDuncan Wilkie <antigravityd@gmail.com>2023-11-18 08:33:15 -0600
committerDuncan Wilkie <antigravityd@gmail.com>2023-11-18 08:33:15 -0600
commitc353ca7be97193910d55e73cbfc56438ab9777f7 (patch)
treeced9a64ed423f1a2678368369e8f2c7d9db8948c
parentd78bf5f3cc91f64ecba897dfa88594ced4b87b72 (diff)
README that doesn't break org.HEADmaster
-rw-r--r--README.org6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.org b/README.org
index d0b6562..caf3d61 100644
--- a/README.org
+++ b/README.org
@@ -3,11 +3,11 @@
Edc is a =dc=-style RPN calculator program, distinct in its use of exact real arithmetic. It uses IC-Reals, a set of C routines developed at Imperial College that implement a system for performing exact (not arbitrary-precision) computations with real numbers (Edalat and Heckmann 2002). The distinction is subtle, but has significant consequences: try computing the 100th term of the sequence
-a₀ = 11/2,
+a(0) = 11/2,
-a₁ = 61/11,
+a(1)= 61/11,
-aₙ = 111 - (1130 - 3000/aₙ₋₂)/aₙ₋₁
+a(n) = 111 - (1130 - 3000/a(n-2))/a(n-1)
in Emacs =calc= at precisions 5, 10, 30, 60, 100, 110, 120, 130, and 140.