<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>finite sum of positive integers Archives - Epsilonify</title>
	<atom:link href="https://www.epsilonify.com/tag/finite-sum-of-positive-integers/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Best solutions on internet!</description>
	<lastBuildDate>Sat, 16 Sep 2023 22:20:10 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.5</generator>

<image>
	<url>https://www.epsilonify.com/wp-content/uploads/2022/09/cropped-E-M7-32x32.png</url>
	<title>finite sum of positive integers Archives - Epsilonify</title>
	<link></link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>The Finite Sum Of Natural Numbers</title>
		<link>https://www.epsilonify.com/mathematics/calculus/the-sum-of-finite-natural-numbers/</link>
					<comments>https://www.epsilonify.com/mathematics/calculus/the-sum-of-finite-natural-numbers/#respond</comments>
		
		<dc:creator><![CDATA[The Mathematician]]></dc:creator>
		<pubDate>Wed, 15 Mar 2023 13:00:25 +0000</pubDate>
				<category><![CDATA[Calculus]]></category>
		<category><![CDATA[Mathematics]]></category>
		<category><![CDATA[finite sum of natural numbers]]></category>
		<category><![CDATA[finite sum of positive integers]]></category>
		<guid isPermaLink="false">https://www.epsilonify.com/?p=764</guid>

					<description><![CDATA[<p>In this article, we will prove the finite sum of natural numbers via the direct way and induction. We have the following sum, which is the finite sum of natural numbers Proof 1. We start with induction. For the base case, if , then which holds. For the induction step, we take for the induction [&#8230;]</p>
<p>The post <a href="https://www.epsilonify.com/mathematics/calculus/the-sum-of-finite-natural-numbers/">The Finite Sum Of Natural Numbers</a> appeared first on <a href="https://www.epsilonify.com">Epsilonify</a>.</p>
]]></description>
										<content:encoded><![CDATA[In this article, we will prove the finite sum of natural numbers via the direct way and induction. We have the following sum, which is the finite sum of natural numbers

 <div class="wp-block-katex-display-block katex-eq" data-katex-display="true"><pre>\begin{equation*}
\sum_{i = 0}^n i = \frac{n(n+1)}{2}
\end{equation*}</pre></div>


<strong>Proof 1.</strong> We start with induction. For the base case, if <span class="katex-eq" data-katex-display="false">n = 0</span>, then

 <div class="wp-block-katex-display-block katex-eq" data-katex-display="true"><pre>\begin{equation*}
\sum_{i = 0}^0 i = 0 = \frac{0(0+1)}{2} = 0
\end{equation*}</pre></div>


which holds. For the induction step, we take for the induction hypothesis that the sum holds for <span class="katex-eq" data-katex-display="false">n</span>, and we want to show that it holds too for <span class="katex-eq" data-katex-display="false">n + 1</span>. So summing up to and including <span class="katex-eq" data-katex-display="false">n + 1</span>, we get

 <div class="wp-block-katex-display-block katex-eq" data-katex-display="true"><pre>\begin{align*}
\sum_{i = 0}^{n+1} i &= \frac{(n + 1)((n + 1) +1)}{2} \\ 
&= \frac{n(n+1) + 2n + 2}{2} \\
&= \frac{n(n+1)}{2} + \frac{2n + 2}{2} \\
&= \frac{n(n+1)}{2} + (n + 1) \\
&= (\sum_{i = 0}^{n} i) + (n + 1) = \sum_{i = 0}^{n + 1} i
\end{align*}</pre></div>

which proves that the summation is correct.
<br>
<br>
<strong>Proof 2.</strong> Another way to prove it is to reverse the sum from <span class="katex-eq" data-katex-display="false">n</span> to <span class="katex-eq" data-katex-display="false">0</span>, i.e., 

 <div class="wp-block-katex-display-block katex-eq" data-katex-display="true"><pre>\begin{align*}
n + (n-1) + \cdots + 2 + 1 
\end{align*}</pre></div>


Now we take the sum which we have seen earlier and the reverse version:

 <div class="wp-block-katex-display-block katex-eq" data-katex-display="true"><pre>\begin{alignat*}{4}
1 &+ 2 &&+ \cdots &&+ (n - 1) &&+ n \\
n &+ (n-1) &&+ \cdots &&+ 2 &&+ 1\\ 
\end{alignat*}</pre></div>

We will sum the two sums above: <span class="katex-eq" data-katex-display="false">n + 1 = n + 1</span>, <span class="katex-eq" data-katex-display="false">(n - 1) + 2 = n + 1</span>, <span class="katex-eq" data-katex-display="false">\ldots</span>, <span class="katex-eq" data-katex-display="false">1 + n = n + 1</span>. This happens <span class="katex-eq" data-katex-display="false">n</span> times. So we get

 <div class="wp-block-katex-display-block katex-eq" data-katex-display="true"><pre>\begin{equation*}
2 \cdot \sum_{i = 0}^n i = n(n + 1)
\end{equation*}</pre></div>


Now divide out <span class="katex-eq" data-katex-display="false">2</span> on both sides, and we get

 <div class="wp-block-katex-display-block katex-eq" data-katex-display="true"><pre>\begin{equation*}
\sum_{i = 0}^n i = \frac{n(n+1)}{2}
\end{equation*}</pre></div>


which finishes the proof.<p>The post <a href="https://www.epsilonify.com/mathematics/calculus/the-sum-of-finite-natural-numbers/">The Finite Sum Of Natural Numbers</a> appeared first on <a href="https://www.epsilonify.com">Epsilonify</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.epsilonify.com/mathematics/calculus/the-sum-of-finite-natural-numbers/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
