{"id":476,"date":"2010-01-31T19:16:14","date_gmt":"2010-01-31T19:16:14","guid":{"rendered":"http:\/\/mathscitech.org\/articles\/?p=476"},"modified":"2024-01-01T11:59:52","modified_gmt":"2024-01-01T11:59:52","slug":"good-math-technique","status":"publish","type":"post","link":"https:\/\/mathscitech.org\/articles\/good-math-technique","title":{"rendered":"The Place of Insight, Technique, and Computing in Mathematics"},"content":{"rendered":"<p><!-- wordpress article\nauthor: Assad Ebrahim\ntitle: Good Mathematical Technique Reduces the Need for Insight\ntitle2: Good Mathematical Technique and the Case for Mathematical Insight\ndate: 1\/26\/2010\nslug: good-math-technique\nTags: Discrete Mathematics, Finite Summation, Heuristics, Mathematics, Maxima, Problem-Solving, Results, Ruby, Technology\nCategory: Mathematics, Technology\n--><\/p>\n<p>The mathematician Alfred North Whitehead<sup class='footnote'><a href='#fn-476-1' id='fnref-476-1' onclick='return fdfootnote_show(476)'>1<\/a><\/sup> observed that &#8220;[Advancement occurs] by extending the number of important operations which we can perform without thinking of them.&#8221; (<em>Introduction to Mathematics<\/em>, 1911 <sup class='footnote'><a href='#fn-476-2' id='fnref-476-2' onclick='return fdfootnote_show(476)'>2<\/a><\/sup>)  This is certainly true in mathematics where the development of judicious notation, accompanied by good mathematical technique, extends the capability to perform chains of complex reasoning accurately and efficiently.  Through proper problem formulation (tractable yet generalizable), one can sometimes pass from a single insight to the solution of a family of problems, and in some cases, to the solution to the general question itself.<sup class='footnote'><a href='#fn-476-3' id='fnref-476-3' onclick='return fdfootnote_show(476)'>3<\/a><\/sup>  <\/p>\n<p>Here, mathematical computing can provide a useful benefit: helping to efficiently explore conjectures, dispatch with false directions, and save time during the development, error-checking and validation stages of obtaining general results.  In industry, where specific or semi-general results are needed fast, such tools allow rapidly working up the required material and providing the necessary certainty before the fully general results or complete proof are ready.<\/p>\n<p><!--more--><\/p>\n<p>A good example of this is a problem from discrete mathematics: <a href=\"finite-summations-1\">the finite summation of integer powers<\/a> <img loading=\"lazy\" src='https:\/\/s0.wp.com\/latex.php?latex=S_p%28n%29+%3D+%5Csum_%7Bk%3D1%7D%5EN+k%5Ep&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='S_p(n) = \\sum_{k=1}^N k^p' title='S_p(n) = \\sum_{k=1}^N k^p' class='latex' \/>, for whole number powers p.  <\/p>\n<p>The case p=1 is familiar to every mathematician and is accessible enough so that an interested non-specialist should be able to follow the arguments and understand the methods being developed for small p. The <a href=\"finite-summations-2\">the general case for all p<\/a> is likely only to be familiar to specialists.  While the general problem does not require extensive background to understand, it is substantive enough to illustrate how <a href=\"maxima\">Maxima<\/a> and <a href=\"http:\/\/www.ruby-lang.org\/en\/\">Ruby<\/a> can be effective tools in the development and validation of general mathematical results.  <\/p>\n<p>The problem is ideal for illustrating three main points:<\/p>\n<ol>\n<li>the value of mathematical technique, in this case the manipulation of summations, as covered in greater detail in <em>Concrete Mathematics<\/em> by mathematicians Donald Knuth, Ron Graham, and Oren Patashnik, as well as linear algebra, in particular linear independence of monomials in a polynomial vector space.\n<li> the value of using judicious symbolism (in this case, a symbolism that allows the development of the recurrences and passing readily to the general case), and,\n<li> the value of mathematical computing tools that assist in the exploration, development, and validation of general results (in this case, the symbolic computation package <a href=\"maxima\">Maxima<\/a> <sup class='footnote'><a href='#fn-476-4' id='fnref-476-4' onclick='return fdfootnote_show(476)'>4<\/a><\/sup>, and the interactive object oriented programming language, <a href=\"http:\/\/www.ruby-lang.org\/en\/\">Ruby<\/a><sup class='footnote'><a href='#fn-476-5' id='fnref-476-5' onclick='return fdfootnote_show(476)'>5<\/a><\/sup>).\n  <\/ol>\n<p>Let&#8217;s take a closer look: <\/p>\n<p>We are looking for closed form formulas for a family of summations of powers of integers:<\/p>\n<p align=center><img loading=\"lazy\" src='https:\/\/s0.wp.com\/latex.php?latex=%5Cdisplaystyle+%5Csum_%7Bk%3D1%7D%5E%7BN%7D+k%5Ep&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='\\displaystyle \\sum_{k=1}^{N} k^p' title='\\displaystyle \\sum_{k=1}^{N} k^p' class='latex' \/><\/p>\n<p>In particular, we want closed form solutions (formulas in <img loading=\"lazy\" src='https:\/\/s0.wp.com\/latex.php?latex=N&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='N' title='N' class='latex' \/>) for the following finite summations:<\/p>\n<p align=center>(1) <img loading=\"lazy\" src='https:\/\/s0.wp.com\/latex.php?latex=%5Cdisplaystyle+%5Csum_%7Bk%3D1%7D%5E%7BN%7D+k+%3D+1+%2B+2+%2B+3+%2B+%5Cldots+%2B+%28N-1%29+%2B+N&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='\\displaystyle \\sum_{k=1}^{N} k = 1 + 2 + 3 + \\ldots + (N-1) + N' title='\\displaystyle \\sum_{k=1}^{N} k = 1 + 2 + 3 + \\ldots + (N-1) + N' class='latex' \/><\/p>\n<p align=center>(2) <img loading=\"lazy\" src='https:\/\/s0.wp.com\/latex.php?latex=%5Cdisplaystyle+%5Csum_%7Bk%3D1%7D%5E%7BN%7D+k%5E2+%3D+1%5E2+%2B+2%5E2+%2B+3%5E2+%2B+%5Cldots+%2B+%28N-1%29%5E2+%2B+N%5E2&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='\\displaystyle \\sum_{k=1}^{N} k^2 = 1^2 + 2^2 + 3^2 + \\ldots + (N-1)^2 + N^2' title='\\displaystyle \\sum_{k=1}^{N} k^2 = 1^2 + 2^2 + 3^2 + \\ldots + (N-1)^2 + N^2' class='latex' \/><\/p>\n<p align=center>(3) <img loading=\"lazy\" src='https:\/\/s0.wp.com\/latex.php?latex=%5Cdisplaystyle+%5Csum_%7Bk%3D1%7D%5E%7BN%7D+k%5E3&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='\\displaystyle \\sum_{k=1}^{N} k^3' title='\\displaystyle \\sum_{k=1}^{N} k^3' class='latex' \/><\/p>\n<p>and, generally for every <img loading=\"lazy\" src='https:\/\/s0.wp.com\/latex.php?latex=p&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='p' title='p' class='latex' \/>:<\/p>\n<p align=center>(P) <img loading=\"lazy\" src='https:\/\/s0.wp.com\/latex.php?latex=%5Cdisplaystyle+%5Csum_%7Bk%3D1%7D%5E%7BN%7D+k%5Ep+%3D+1%5Ep+%2B+2%5Ep+%2B+3%5Ep+%2B+%5Cldots+%2B+%28N-1%29%5Ep+%2B+N%5Ep&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='\\displaystyle \\sum_{k=1}^{N} k^p = 1^p + 2^p + 3^p + \\ldots + (N-1)^p + N^p' title='\\displaystyle \\sum_{k=1}^{N} k^p = 1^p + 2^p + 3^p + \\ldots + (N-1)^p + N^p' class='latex' \/><\/p>\n<p>If you&#8217;re nine year old Gauss, the story goes that you knock off (1) with an elegant insight: write the expansion twice, once in forward order and once in reverse order.  Now add the terms column-wise, and observe that the column sums are uniformly <img loading=\"lazy\" src='https:\/\/s0.wp.com\/latex.php?latex=N%2B1&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='N+1' title='N+1' class='latex' \/>.  There are <img loading=\"lazy\" src='https:\/\/s0.wp.com\/latex.php?latex=N&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='N' title='N' class='latex' \/> columns, but you introduced the second column thereby doubling the sum.  Taking all this into account, the closed form formula for the sum (1) is <\/p>\n<p align=center><img loading=\"lazy\" src='https:\/\/s0.wp.com\/latex.php?latex=%5Cfrac%7B1%7D%7B2%7D+%28N%2B1%29N+%3D+%5Cfrac%7B1%7D%7B2%7D%5BN%5E2+%2B+N%5D&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='\\frac{1}{2} (N+1)N = \\frac{1}{2}[N^2 + N]' title='\\frac{1}{2} (N+1)N = \\frac{1}{2}[N^2 + N]' class='latex' \/>.<\/p>\n<p>For the general problem, some insight is also needed, in this case recognizing that a <a href=\"finite-summations-3\">direct (non-iterative) solution<\/a> can be obtained using a linear independence argument from linear algebra.  Armed with a closed form formula for the first problem and some manipulative ability (recurrences and induction), you can obtain <a href=\"finite-summations-2\">a recurrence solution for the general case<\/a> mechanically, i.e. without further fundamental insight.  <\/p>\n<p>The point is that there is insight and technique in mathematics.  While technique facilitates insight, it should not be mistaken for it.  And it is fundamentally the insights that should be identified, catalogued, and acquired by those wishing to improve their abilities in mathematics.<\/p>\n<h4>Continue reading:<\/h4>\n<p><strong>Finite Summations of Integer Powers <img loading=\"lazy\" src='https:\/\/s0.wp.com\/latex.php?latex=x%5Ep&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='x^p' title='x^p' class='latex' \/><\/strong><br \/>\n<a href=\"finite-summations-1\" rel=\"noopener\" target=\"_blank\">Chapter 1<\/a>, <a href=\"finite-summations-2\" rel=\"noopener\" target=\"_blank\">Chapter 2<\/a>, <a href=\"finite-summations-3\" rel=\"noopener\" target=\"_blank\">Chapter 3<\/a><\/p>\n<hr>\n<p><h4>Footnotes<\/h4>\n<p><!-- ========================================== \nNone of this material is novel from the point of view of the specific results obtained, and the mathematics involved would be considered fairly elementary by an expert in this area.  \n\n--><\/p>\n<div class='footnotes' id='footnotes-476'>\n<div class='footnotedivider'><\/div>\n<ol>\n<li id='fn-476-1'> Whitehead was the major collaborator with Bertrand Russell in the strenuous 10 year attempt, ultimately unsuccessful, at driving through the logicist program in Mathematics, i.e. reducing the entire body of mathematics to a fixed system of logic.  The program of logicial reductivism, of which this was perhaps the last major attempt, and certainly one of the best known and most influential, was put to rest by Godel&#8217;s discovery of the essential incompleteness of every sufficiently strong logical system (proved in his Incompleteness Theorem).  In this, he establishes that any logical system sufficiently strong to obtain arithmetic will be able to generate statements that the system cannot prove. <span class='footnotereverse'><a href='#fnref-476-1'>&#8617;<\/a><\/span><\/li>\n<li id='fn-476-2'> Whitehead claimed in the original that it is Civilization that advances in this way.  I have reduced the claim for the purpose of this article. <span class='footnotereverse'><a href='#fnref-476-2'>&#8617;<\/a><\/span><\/li>\n<li id='fn-476-3'>  Fields Medalist Terence Tao has written a short piece that describes <a href=\"https:\/\/terrytao.wordpress.com\/career-advice\/theres-more-to-mathematics-than-rigour-and-proofs\/\">the role of rigor and the value of mathematical technique in the training of a mathematician.<\/a>  In the online discussion of this article, he adds two particularly interesting remarks: the first concerns the difference between the training pathways of physicists and engineers versus mathematicians that acknowledges that the final destination is the same, but the training route is different (pre-rigorous, post-rigrous).  He then speculates on the observation that the two pathways are not the same, and that the order in which one traverses them influences the final outcome, and he makes the analogy with the order of learning languages. <span class='footnotereverse'><a href='#fnref-476-3'>&#8617;<\/a><\/span><\/li>\n<li id='fn-476-4'> <a href=\"maxima\">Maxima<\/a> is a system for the manipulation of symbolic and numerical expressions, including differentiation, integration, Taylor series, Laplace transforms, ordinary differential equations, systems of linear equations, polynomials, and sets, lists, vectors, matrices, and tensors. Maxima yields high precision numeric results by using exact fractions, arbitrary precision integers, and variable precision floating point numbers. Maxima can plot functions and data in two and three dimensions. <span class='footnotereverse'><a href='#fnref-476-4'>&#8617;<\/a><\/span><\/li>\n<li id='fn-476-5'> <a href=\"http:\/\/www.ruby-lang.org\/en\/\">Ruby<\/a> is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write. <span class='footnotereverse'><a href='#fnref-476-5'>&#8617;<\/a><\/span><\/li>\n<\/ol>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<\/p>\n<p>The mathematician Alfred North Whitehead1 observed that &#8220;[Advancement occurs] by extending the number of important operations which we can perform without thinking of them.&#8221; (Introduction to Mathematics, 1911 2) This is certainly true in mathematics where the development of judicious notation, accompanied by good mathematical technique, extends the capability to perform chains of complex [Read More&#8230;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"nf_dc_page":"","footnotes":""},"categories":[7,4],"tags":[25,26,28,23,29,27,24],"coauthors":[112],"class_list":["post-476","post","type-post","status-publish","format-standard","hentry","category-education","category-mathematics-phenomenology","tag-discrete-mathematics","tag-finite-summation","tag-heuristics","tag-maxima","tag-problem-solving","tag-results","tag-ruby","odd"],"views":9796,"_links":{"self":[{"href":"https:\/\/mathscitech.org\/articles\/wp-json\/wp\/v2\/posts\/476","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mathscitech.org\/articles\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mathscitech.org\/articles\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mathscitech.org\/articles\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mathscitech.org\/articles\/wp-json\/wp\/v2\/comments?post=476"}],"version-history":[{"count":69,"href":"https:\/\/mathscitech.org\/articles\/wp-json\/wp\/v2\/posts\/476\/revisions"}],"predecessor-version":[{"id":531,"href":"https:\/\/mathscitech.org\/articles\/wp-json\/wp\/v2\/posts\/476\/revisions\/531"}],"wp:attachment":[{"href":"https:\/\/mathscitech.org\/articles\/wp-json\/wp\/v2\/media?parent=476"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mathscitech.org\/articles\/wp-json\/wp\/v2\/categories?post=476"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mathscitech.org\/articles\/wp-json\/wp\/v2\/tags?post=476"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/mathscitech.org\/articles\/wp-json\/wp\/v2\/coauthors?post=476"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}