From 06d66811b93524720bd9e2aa06e37ee5ce8887fa Mon Sep 17 00:00:00 2001 From: phidias Date: Wed, 11 Feb 2026 17:14:36 +0000 Subject: [PATCH] docs: create education/mathematics/mathematical-induction --- .../mathematics/mathematical-induction.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 education/mathematics/mathematical-induction.html diff --git a/education/mathematics/mathematical-induction.html b/education/mathematics/mathematical-induction.html new file mode 100644 index 0000000..48b1ad0 --- /dev/null +++ b/education/mathematics/mathematical-induction.html @@ -0,0 +1,18 @@ + + +

Fundamental Principle

+

Mathematical induction is a method used to prove that a statement holds true for all natural numbers k.

+

Let P(n) be a statement defined for each positive integer n.

+

Then P(n) will be true for all positive integers n if the following two conditions are satisfied:

+

(1) P(1) is true.

+

(2) P(k) is true for some integer k + 1 implies that P(k + 1) is true.

+

Because all the other values can use the result from the (1) and (2),

+

Therefore, you can conclude that all the conditions with integers n are true.