in reply to [OT] math fulguration
#! /usr/bin/perl use warnings; use strict; use feature qw{ say }; use List::Util qw{ sum }; for my $A (2..20) { for my $n (1..10) { die "$A, $n\n" unless $A ** $n == 1 + ($A - 1) * sum(map $A ** $_, 0 .. $ +n - 1) } }
The proof can be compiled in TeX:
\documentclass{article} \title{Summation Fulguration} \newtheorem{thm}{Theorem} \newtheorem{prf}{Proof}[thm] \begin{document} \begin{thm} $$a^n = 1 + (a - 1) \sum_{i=0}^{n-1} a^i$$ \end{thm} \begin{prf} $$1 + (a - 1) \sum_{i=0}^{n-1} a^i$$ $$= 1 + \sum_{i=0}^{n-1}(a-1)a^i$$ $$= 1 + \sum_{i=0}^{n-1} a^{i+1} - a^i$$ $$= 1 + \sum_{i=0}^{n-1}a^{i+1} - \sum_{i=0}^{n-1}a^i$$ $$= 1 + (\sum_{i=1}^{n-1}a^i) + a^n - (a^0 + \sum_{i=1}^{n-1}a^i)$$ $$= 1 + (\sum_{i=1}^{n-1}a^i) + a^n - a^0 - \sum_{i=1}^{n-1}a^i$$ $$= 1 + a^n - a^0$$ $$= 1 + a^n - 1$$ $$= a^n$$ Q.E.D. \end{prf} \end{document}
The result can be checked here.
I have no idea how broadly it is known.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: [OT] math fulguration
by LanX (Saint) on Apr 06, 2021 at 21:20 UTC | |
by AnomalousMonk (Archbishop) on Apr 06, 2021 at 22:01 UTC | |
by LanX (Saint) on Apr 06, 2021 at 22:44 UTC | |
by AnomalousMonk (Archbishop) on Apr 06, 2021 at 23:03 UTC | |
by Discipulus (Canon) on Apr 07, 2021 at 06:20 UTC | |
by choroba (Cardinal) on Apr 06, 2021 at 22:24 UTC | |
by syphilis (Archbishop) on Apr 06, 2021 at 22:35 UTC | |
by Aldebaran (Curate) on Apr 07, 2021 at 01:03 UTC |