<?xml version="1.0" encoding="UTF-8"?>
<rss  xmlns:atom="http://www.w3.org/2005/Atom" 
      xmlns:media="http://search.yahoo.com/mrss/" 
      xmlns:content="http://purl.org/rss/1.0/modules/content/" 
      xmlns:dc="http://purl.org/dc/elements/1.1/" 
      version="2.0">
<channel>
<title>Dr. Waddell</title>
<link>https://mrwaddell.net/blog/archive.html</link>
<atom:link href="https://mrwaddell.net/blog/archive.xml" rel="self" type="application/rss+xml"/>
<description></description>
<generator>quarto-1.6.39</generator>
<lastBuildDate>Mon, 02 Dec 2024 08:00:00 GMT</lastBuildDate>
<item>
  <title>Coding website in Quarto - menus</title>
  <dc:creator>Glenn Waddell, Jr.</dc:creator>
  <link>https://mrwaddell.net/blog/2024-12-02-coding-website-in-quarto--menus/</link>
  <description><![CDATA[ 




<p>As I have moved my website from wordpress (which failed me miserably) to Quarto in RStudio, I have learned a lot about how to build the site and aspects of the site in Quarto. I will say that the <a href="https://quarto.org/docs/websites/website-navigation.html" target="&quot;_blank">“help” on the Quarto site</a> is less than ideal on the topic of menus, so I am going to spend some time here fleshing out what I have done on the off chance it helps someone else.</p>
<p>First off, I wanted to build a site that had totally separate parts. By this, I mean, I wanted a “Work” site that would allow me to open up links I used almost daily, without typing in the links, or keeping track of them. This is purely a selfish, ‘spend an hour building a site, so I can save seconds every day’ type of thing. But it works for me.</p>
<p>So my “Work” site needed a menu structure that was self contained. I wanted to be able to share the work site with colleagues and open up the work page in front of students, without giving away personal information like where I shop, or where I bank (that is a private site). I also wanted a public facing site for my blog and an about me page. Maybe there would be more there in the future, but for now, those are the most important things on that branch.</p>
<p>So that means I wanted a Public group of links, a Work set of links, and a Private set of links. It is all built on the same platform, but none of them are cross linked or interconnected.</p>
<p>The help above says it is a “Hybrid” navigation, but it was not clear. So, on to the learning!</p>
<p>Here is what I figured out.</p>
<p>In my _quarto.yml file, I have the following code:</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode default code-with-copy"><code class="sourceCode default"><span id="cb1-1">  sidebar:</span>
<span id="cb1-2">  - id: public</span>
<span id="cb1-3">    style: "docked"</span>
<span id="cb1-4">    contents: </span>
<span id="cb1-5">      - text: "Home"</span>
<span id="cb1-6">        href: index.qmd</span>
<span id="cb1-7">      - text: "About Me"</span>
<span id="cb1-8">        href: about.qmd</span>
<span id="cb1-9">        </span>
<span id="cb1-10">  - id: worklinks</span>
<span id="cb1-11">    style: "docked"</span>
<span id="cb1-12">    contents: </span>
<span id="cb1-13">      - text: "Work Links"</span>
<span id="cb1-14">        href: work.qmd</span>
<span id="cb1-15"></span>
<span id="cb1-16">    - id: private</span>
<span id="cb1-17">    style: "docked"</span>
<span id="cb1-18">    contents: </span>
<span id="cb1-19">      - text: "Personal Links"</span></code></pre></div>
<p>I have more than those few links, but the important chunk is the “id: public” or “id: worklinks” line. Those lines define all the links below as part of the menu I define.</p>
<p>Then, in the page I create, I have the command “sidebar: public” in the top Title Block. This is the actual sidebar used for all of the blog pages, and tells Quarto to add the particular menu structure I want to the particular page.</p>
<p>So how does it all work in reality? Pretty sweet.</p>
<p><img src="https://mrwaddell.net/blog/2024-12-02-coding-website-in-quarto--menus/menuimage.png" class="img-fluid"></p>
<p>This is the public menu, and the “Home” words will take a person always to this page. I circled the “Home” on the menu bar, because that takes me to my private menu structure (which I am not showing here because … well … private.) So, I can access any menu structure I want from any page, as long as I am logged into the computer and my settings are saved. If I am on a public computer, I am not using my private links anyway.</p>
<p>And from my private menu structure, I have a work link, which takes me to my work page, or I can just type in the link when I am in a classroom and need my work links.</p>
<p><img src="https://mrwaddell.net/blog/2024-12-02-coding-website-in-quarto--menus/workmenu.png" class="img-fluid"></p>
<p>You can literally have as many sidebars as you want for your site / pages. All you need to do is build them out in the _quarto.yml file, and give them a different “id: name”. Then use that name in the Title Block to tell Quarto to use sidebar menu structure A, instead of B.</p>
<p>Voila!</p>
<p>It took me quite some time to figure this out. It is really easy, and much easier than the Quarto help makes it seem.</p>
<p>I hope this can help someone else along the way. Drop me note at BlueSky if it does.</p>



<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>Coding</category>
  <category>Website</category>
  <category>Learning</category>
  <guid>https://mrwaddell.net/blog/2024-12-02-coding-website-in-quarto--menus/</guid>
  <pubDate>Mon, 02 Dec 2024 08:00:00 GMT</pubDate>
</item>
<item>
  <title>What if we vary b</title>
  <dc:creator>Glenn Waddell, Jr.</dc:creator>
  <link>https://mrwaddell.net/blog/2024-12-01-whatif-we-vary-b/</link>
  <description><![CDATA[ 




<p>The main post where all my quadratic posts are listed <a href="../../blog/2024-09-15-exploring-quadratics-an-overview/index.html">can be found here</a>.</p>
<p>One of the ideas I like to play with often is the “What If-Not” approach to questions in mathematics. This formulation was created by Brown &amp; Walter in their book <a href="https://www.amazon.com/Art-Problem-Posing-Stephen-Brown/dp/0805849777" target="_blank">“The Art of Problem Posing”</a> now in its 3rd edition. It is a fabulous book that all teachers should read (in my opinion).</p>
<p>Anyway, applying this to the quadratic equation in standard form, we play this game often in class. What if we vary the ‘a’ value? What if we vary the ‘c’ value in the equation?</p>
<p>But we almost never ask, “what if the ‘b’ value is not constant?”</p>
<p>Have you ever done this? It has an extremely surprising outcome! Go over to Desmos and do it now. What do you see the vertex of a quadratic doing? Hmm, it is a little hard to see right off the bat, but let’s do some math and see if we can figure out what is going on.</p>
<p>If we have a quadratic function, <img src="https://latex.codecogs.com/png.latex?f(x)=ax%5E2%20+bx%20+c"> then we can complete the square to find the vertex. I am going to skip over the large amount of typing again, but you can <a href="../../blog/2024-09-23-different-ways-of-solving-quadratics/index.html">go to this post and see the steps</a></p>
<p>If we jump down in that link, we will see the vertex form of the function is:</p>
<p><img src="https://latex.codecogs.com/png.latex?%0Af(x)%20=%20%5Cleft(x%20+%20%5Cfrac%7Bb%7D%7B2a%7D%20%5Cright)%5E2%20-%20%5Cleft(%5Cfrac%7Bb%7D%7B2a%7D%20%5Cright)%5E2%20+%20%5Cfrac%7Bc%7D%7Ba%7D%0A"> This means the vertex of the function is:</p>
<p>$$ vertex = (-, f (-) )</p>
<p>$$ Easy enough to put into Desmos to graph, but let’s look at that “k” value for the vertex. We know that in translation form, the x value of the vertex is -h, and the rest of that function above is the k.</p>
<p><img src="https://latex.codecogs.com/png.latex?%0Ak=%20-%20%5Cleft(%5Cfrac%7Bb%7D%7B2a%7D%20%5Cright)%5E2%20+%20%5Cfrac%7Bc%7D%7Ba%7D%0A"> So if we do a little algebra on this, we get:</p>
<p><img src="https://latex.codecogs.com/png.latex?%0Ak=%5Cleft(c-%20%5Cfrac%7Bb%5E2%7D%7B4a%7D%5Cright)%0A"> And look at that! The k value is a reflected quadratice in terms of a, b, and c! But that means that the vertex of the function that the vertex traces is also a quadratic!</p>
<p>And, in fact, if we let <img src="https://latex.codecogs.com/png.latex?x=%5Cleft(-%5Cfrac%7Bb%7D%7B2a%7D%5Cright)"> then substitute that into the right side of the k=, we get a new function <img src="https://latex.codecogs.com/png.latex?v(x)=c-ax%5E2"></p>
<p>So let’s <a href="https://www.desmos.com/calculator/ksf4e4lcyy">plot this in Desmos</a> and see what happens!</p>
<p>Sure enough, when we vary the ‘b’ value in a quadratic in standard form, the vertex of the original function traces out a new quadratic function.</p>
<hr>
<p>So of course, the next question is, “What happens if we do this with a cubic function or other polynomials?” My advice is to read this paper first: <a href="https://arxiv.org/abs/2008.07655" target="_blank">Algebraic Number Starscapes by Edmund Harriss, Katherine E. Stange, Steve Trettel</a></p>
<p>It is 59 pages long, with some amazing proofs, images, and discussion. What happens is we end up with some open questions that are not fully solvable! How awesome is that. The quadratic is easily worked out and clearly explained, but the cubic and higher polynomials end up with open questions.</p>
<p>This is the beauty of math! Love it!</p>
<p>This will also end (for now) this discussion of quadratic for me. This makes 7 different posts on the topic. I think I have gotten all my thoughts out for now.</p>



<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>Quadratics</category>
  <category>Proof</category>
  <category>Teaching</category>
  <category>Inquiry</category>
  <guid>https://mrwaddell.net/blog/2024-12-01-whatif-we-vary-b/</guid>
  <pubDate>Sun, 01 Dec 2024 08:00:00 GMT</pubDate>
</item>
<item>
  <title>Pythagorean triples and parabolas</title>
  <dc:creator>Glenn Waddell, Jr.</dc:creator>
  <link>https://mrwaddell.net/blog/2024-09-23-pythagorean-triples-and-parabolas/</link>
  <description><![CDATA[ 




<p>I am going to have to give a shout out to <a href="https://pballew.blogspot.com/" target="_blank">Pat’s Blog again</a> in this post, as he was the inspiration. Seriously, if you do not have his blog bookmarked in your feed reader, you need to. He is a fabulous blogger on math topics.</p>
<p>The specific post I that inspired this extension on quadratics is his <a href="https://pballew.blogspot.com/2024/04/pythagorean-parabolas.html" target="_blank">post on Pythagorean Parabolas.</a> I am not going to duplicate what he said, but show some connections that I found truly interesting.</p>
<p>First off, let’s chat about the really simple way to build Pythagorean Triples he mentions. Honestly, I had not heard of this method before. (I also have to admit, I taught everything except geometry in HS, so that is probably why).</p>
<p>Take any odd number. Say, 3 for example. Square it, so you get 9, divide by 2, so you get 4.5. Now, do the floor and the ceiling on 4.5, and you get 4, and 5. The Pythagorean Triple is 3-4-5. There is an additional interesting thing with this series of triples, and that is because we do the floor and ceiling, the hypotenuse and the other long side will always have a difference of 1.</p>
<p>If we graph the two short sides, and ignore the hypotenuse, so in essence, the short side is the x value, and the long non-hypotenuse is the y value of a triangle, we get the following graph:</p>
<p><img src="https://mrwaddell.net/blog/2024-09-23-pythagorean-triples-and-parabolas/pythagTriples.png" class="img-fluid"></p>
<p>Looks a lot like a parabola! In fact, it is. It has an equation of:</p>
<p><img src="https://latex.codecogs.com/png.latex?%0Af(x)=%5Cfrac%7B1%7D%7B2%7Dx%5E2%20-%5Cfrac%7B1%7D%7B2%7D%0A"></p>
<p><img src="https://mrwaddell.net/blog/2024-09-23-pythagorean-triples-and-parabolas/Parabolatriples.png" class="img-fluid"></p>
<p>Which makes sense, given the definition of a parabola using the focus and directrix. Pat puts it this way:</p>
<blockquote class="blockquote">
<p>If we think about the definition of a parabola as the set of points equally distant from a focus and directrix, we realize the line of the directrix must be the line y = -1 so that, for instance the point (3,4) which is 5 units from the origin/focus will also be 5 units away from the directrix.&nbsp;</p>
</blockquote>
<p>So if we multiply all the original triples by 2 (so our first triple is 6-8-10) we get a triple that has a difference of 2 between the two longest sides, so the equation should be:</p>
<p><img src="https://latex.codecogs.com/png.latex?%0Af(x)=%5Cfrac%7B1%7D%7B4%7Dx%5E2%20-1%0A"></p>
<p>and sure enough!</p>
<p><img src="https://mrwaddell.net/blog/2024-09-23-pythagorean-triples-and-parabolas/Dist2triple.png" class="img-fluid"></p>
<p>But, there are other ways to create Pythagorean triples.</p>
<p>Multiplying the primitive Pythagorean Triples by 3, gives us an equation of <img src="https://latex.codecogs.com/png.latex?f(x)=%5Cfrac%7B1%7D%7B6%7Dx%5E%7B2%7D-%5Cfrac%7B3%7D%7B2%7D."></p>
<p>Does this always work for every Pythagorean Triple though? That is a very interesting question, because we used a very simple, primitive way to create the triples, but there are other ways.</p>
<p>For example, there is this way to create the triples. Take any two numbers, such that <img src="https://latex.codecogs.com/png.latex?m%3Cn."></p>
<p><img src="https://latex.codecogs.com/png.latex?n%5E2-m%5E2,%202mn,%20n%5E2+m%5E2"> .</p>
<p>So, for example, we can use consecutive Fibonacci numbers (for fun, why not), we get the following Pythagorean Triples.</p>
<p>3-4-5! Yay, that matches what we got before. But then it explodes.</p>
<p>5-12-13 , again, a simple triple, found above.</p>
<p>16-30-34, this is not a multiple of a primitive triple as above. but it is a multiple of 8-15-17. The 8-15 is on the ‘times 2’ parabola, while the 16-30 is on a ‘time 4’ parabola, <img src="https://latex.codecogs.com/png.latex?f(x)=%5Cfrac%7B1%7D%7B8%7Dx%5E%7B2%7D-2">.</p>
<p>39-80-89, This Triple is the first one that is different! It IS a primitive Triple. So, does it follow the pattern found above? Is it a “difference of 9” parabola? Yes! It is! <img src="https://latex.codecogs.com/png.latex?f(x)=%5Cfrac%7B1%7D%7B18%7Dx%5E%7B2%7D-%5Cfrac%7B9%7D%7B2%7D"></p>
<p>It seems the generalization of the equation is: <img src="https://latex.codecogs.com/png.latex?f_n(x)=%5Cfrac%7B1%7D%7B2n%7Dx%5E2-%5Cfrac%7Bn%7D%7B2%7D"> where n is the difference between the hypotenuse and the next longest side, AS LONG AS IT IS A PRIMITIVE TRIPLE!</p>
<p>Let’s test it on this next triple using Fibonacci numbers.</p>
<p>105-208-233 ; This is a primitive Pythagorean Triple, as the 3 numbers are co-prime. The difference between the last two numbers is 25. So, the function that would create the parabola this triple should be: <img src="https://latex.codecogs.com/png.latex?f_%7B25%7D(x)=%5Cfrac%7B1%7D%7B50%7Dx%5E2-%5Cfrac%7B25%7D%7B2%7D."></p>
<p>Yes!</p>
<p><img src="https://mrwaddell.net/blog/2024-09-23-pythagorean-triples-and-parabolas/predictingfunction.png" class="img-fluid"></p>
<p>It works. Also, if you substitute 105 into the <img src="https://latex.codecogs.com/png.latex?f_%7B25%7D(x)"> function, you get an output of 208.</p>
<p>Which begs the question of Why?</p>
<p>I don’t have that answer, nor do I have a proof. Right now, I have a conjecture that for every primitive Pythagorean Triple, <img src="https://latex.codecogs.com/png.latex?(a,b,c)"> such that <img src="https://latex.codecogs.com/png.latex?a%5E2+b%5E2=c%5E2">, and where <img src="https://latex.codecogs.com/png.latex?a%3Cb%3Cc">, if <img src="https://latex.codecogs.com/png.latex?n=c-b"> then the point <img src="https://latex.codecogs.com/png.latex?(a,b)"> will be on the parabola described by the function <img src="https://latex.codecogs.com/png.latex?f_n(x)=%5Cfrac%7B1%7D%7B2n%7Dx%5E2-%5Cfrac%7Bn%7D%7B2%7D"> .</p>
<p>Edit: 24 October</p>
<p>Proof of my conjecture:</p>
<p>Shoutout to <a href="https://mathstodon.xyz/@TrigOrTreat" target="_blank">TrigOrTreat</a> over on Mastodon who pointed out that if I take my statement that <img src="https://latex.codecogs.com/png.latex?n=c-b"> and reframe it as <img src="https://latex.codecogs.com/png.latex?c=n+b"> and insert it back into the Pythagorean Theorem and solve for b, the conjectured equation for the they parabola is an outcome.</p>
<p><img src="https://latex.codecogs.com/png.latex?%0Aa%5E2%20+%20b%5E2%20=%20(n+b)%5E2%0A"> <img src="https://latex.codecogs.com/png.latex?%0Aa%5E2%20+%20b%5E2%20=%20n%5E2%20+%202nb%20+%20b%5E2%0A"> <img src="https://latex.codecogs.com/png.latex?%0A2nb=a%5E2%20-n%5E2%0A"> <img src="https://latex.codecogs.com/png.latex?%0Ab%20=%20%5Cfrac%7Ba%5E2%7D%7B2n%7D%20-%20%5Cfrac%7Bn%7D%7B2%7D%0A"> Not a hard proof of the conjecture at all.</p>
<p>Pythagorean Triples are really interesting things, and the connections to quadratics is also fascinating!</p>
<p>Edit: 21 October</p>
<p>As I was exploring how to prove this, I came across <a href="https://www.youtube.com/watch?v=QJYmyhnaaek" target="_blank">this interesting video by 3Blue1Brown</a> on calculating triples from complex numbers. Um, WOW! Every Pythagorean Triple can be thought of as the square of any complex number with integer components. (definitely watch the video. It is 14 min well spent)</p>
<p>So, for example, if you take the complex number <img src="https://latex.codecogs.com/png.latex?(9+12i)"> and square it, the magnitude of this new complex number is <img src="https://latex.codecogs.com/png.latex?15">! And the Pythagorean Triple is (9,12,15).</p>
<p>When you do a whole bunch of these, and rotate the axes to show the new lattice points of the coordinate system, it looks like this:</p>
<p><img src="https://mrwaddell.net/blog/2024-09-23-pythagorean-triples-and-parabolas/imaginaryTriples.png" class="img-fluid"></p>
<p>This does not answer the question of proving the general equation above, but it does demonstrate the fact that the equations for these are quadratics. Still have a way to go in my proof, but this is a really interesting connection between complex numbers and Pythagorean Triples.</p>
<p>It also shows why one formula for finding Pythagorean Triples is the one given above. It is the way to find the new magnitude of the hypotenuse of the two vectors in imaginary space. The video does a wonderful job showing it and demonstrating the proof.</p>



<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>Quadratics</category>
  <category>Inquiry</category>
  <category>Connections</category>
  <category>edited</category>
  <guid>https://mrwaddell.net/blog/2024-09-23-pythagorean-triples-and-parabolas/</guid>
  <pubDate>Mon, 21 Oct 2024 07:00:00 GMT</pubDate>
</item>
<item>
  <title>All functions transformations</title>
  <dc:creator>Glenn Waddell, Jr.</dc:creator>
  <link>https://mrwaddell.net/blog/2024-10-21-all-functions-transformations/</link>
  <description><![CDATA[ 




<p>This is not a post just about quadratics or parabolas, but I am placing it in this context, as I want to explain my thinking on this topic of teaching.</p>
<p>In talking to teachers, I have been told a variety of techniques to teach the transformations of different function families. The one thing that I realized is that there is no one way that teachers use to teach this idea. There is, however, and efficiency to be found in the way I approach this topic.</p>
<p>On day 1 of my classroom in Algebra 2, this is what the learners saw on the board, and we used this every day in class.</p>
<p><img src="https://mrwaddell.net/blog/2024-10-21-all-functions-transformations/AllfunctionsDay1.jpg" class="img-fluid" width="300"></p>
<p>Sometime in around day 3 or 4 of the school year we would do a “what do you notice” and “what do you wonder” exercise with this, and we would build the ideas of similarity of a and (h,k) actions, and inverses of functions.</p>
<p>I leaned heavily into the similarity of how a, h, k, (and b, but that is typically outside of the Alg 2 curriculum and into the Trig/Precalc curriculum). I had a rule for myself in my teaching, which was: “Teach something once, use it every day.”</p>
<p>So for translations, I would teach it once. I used Desmos to assist with this, and we used a type of <a href="https://www.desmos.com/calculator/kzhjsgshpt" target="_blank">this calculator file.</a> It has ALL the things. I would start it quite simply with this:</p>
<p><img src="https://mrwaddell.net/blog/2024-10-21-all-functions-transformations/absandpara.png" class="img-fluid" width="300"></p>
<p>and work up to <strong>all</strong> the functions.</p>
<p><img src="https://mrwaddell.net/blog/2024-10-21-all-functions-transformations/allthethings.png" class="img-fluid" width="300"></p>
<p>This is messy, ugly, and not clear from this image, but if you use the sliders, you will see that all the functions will move together. Rational functions, transcendental functions (sine, cosine, tangent), exponential functions, logarithms, as well as all the polynomial functions all work the same way.</p>
<p>Teach it once, use it every day.</p>
<p>This is essential to my teaching philosophy and approach, but it also saves so much time. We can talk about “what do you remember?” and challenge learners to dig into their notes and memory to reconnect knowledge. “Make a prediction as to what happens when I do this, based upon what you learned earlier,” and learners will be able to use what they learned, instead of learning something new.</p>
<p>The translation form of all the functions isn’t always useful, but it serves the purpose of tying all the different functions we talk about together, so that it is clear that as we are learning one idea or topic, we are not forgetting the other ideas we learned.</p>
<p>Everything is connected. We just have to spend a little bit of time thinking about how the topics are connected, and build the connections with the learners.</p>



<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>Transformations</category>
  <category>Quadratics</category>
  <category>First Days</category>
  <guid>https://mrwaddell.net/blog/2024-10-21-all-functions-transformations/</guid>
  <pubDate>Mon, 21 Oct 2024 07:00:00 GMT</pubDate>
</item>
<item>
  <title>Different ways of solving quadratics</title>
  <dc:creator>Glenn Waddell, Jr.</dc:creator>
  <link>https://mrwaddell.net/blog/2024-09-23-different-ways-of-solving-quadratics/</link>
  <description><![CDATA[ 




<p>The main post where all my quadratic posts are listed <a href="../../blog/2024-09-15-exploring-quadratics-an-overview/index.html">can be found here</a>.</p>
<p>I am placing this post in the middle of my thoughts and writing on this topic, because this is more of a compilation of ideas from others.</p>
<p>I am doing this because there are so many different ways of solving and working quadratics, and it is so easy to lose these methods if not careful. I want to keep track of all the amazing ideas, and have a repository for myself that can store, but also show my additions to, these ideas.</p>
<p>So, get us started, I want to look at Pat Bellew’s blog, and a post he first made in 2007, and <a href="https://pballew.blogspot.com/2024/01/solving-quadratic-equations-by-analytic.html" target="_blank">then reposted in Jan 2024</a>. He also has a duplication of this <a href="https://www.academia.edu/41243542/Solving_Quadratic_Equations_By_analytic_and_graphic_methods_Including_several_methods_you_may_never_have_seen" target="_blank">post on Acadamia.edu</a>. What is really interesting about his post, is that it starts with the 18 different methods written about in <a href="mt-article-p193.pdf">NCTM’s Mathematics Teacher in March, 1951, by Willian J. Hazard (pdf)</a>. Hazard wrote the list in 1924.</p>
<p>Pat, because he is amazing, goes through and gives an example of each one of the 18 methods in his post linked above. It is a great read. I suggest you spend some time doing so.</p>
<p>What are the 18 methods you ask?</p>
<ol type="1">
<li>By factoring by inspection.By</li>
<li>factoring after a substitution, z = ax, which leads to z^2 + bz + ac = 0.</li>
<li>By factoring in pairs by splitting bx into two terms.</li>
<li>By completing the square when a is 1 and b is even.</li>
<li>By completing the square as usual after dividing through by a.</li>
<li>By completing the square by the Hindu method (“the pulverizer”), i.e.&nbsp;by multiplying through by 4a and adding b^2 to both sides.</li>
<li>By completing square as given, adding b^2/4a.</li>
<li>By the formula.</li>
<li>By trigonometric methods (see Wentworth-Smith,‘Plane Trigonometry’).</li>
<li>By slide rule (see Joseph Lipka, ‘Graphical and Mechanical Computation’. John Wiley and Sons, Inc.&nbsp;[1918], p.&nbsp;11 ff.</li>
<li>By graphing for real roots. (All modern textbooks.)</li>
<li>By graph, extended for complex roots. (See: Howard F. Fehr, “Graphical Representation of Complex Roots,” ‘Multi-Sensory Aids in the Teaching of Mathematics’, ‘Eighteenth Yearbook of the National Council of Teachers of mathematics’ [1945] pp.&nbsp;130-138. George A. Yanosik, “Graphical Solutions for Complex Roots of Quadratics, Cubics, and Quartics,” ‘National Mathematics Magazine’, 17 [Jan.&nbsp;1943], pp.&nbsp;147-150.)</li>
<li>Real roots by Lill circle. (d’Ocagne, ‘Calcu graphique et nomographie’, from which L. E. Dickson got his reference to it in his ‘Elementary Theory of Equations’.) (Also see J. W. A. Young’s ‘Monographs on, Topics in Modern Mathematics’ “Constructions with Ruler and Compasses.”)</li>
<li>By extension of the Lill circle to include complex roots.</li>
<li>Using the graph of y = x^2 and y = -bx – c to find real roots. (Lipka, ‘op. cit.’ p.&nbsp;26, modifies and extends this solution; Schultze, ‘Graphic Algebra’; Hamilton and Kettle, ‘Graphs and Imaginaries’.).</li>
<li>By extending (15) to include complex roots (Hamilton and Kettle, Schultze).</li>
<li>By use of a table of quarter squares. This is a practical method of handling an equation having large constants, as we already have the table in print (Jones’ ‘Mathematical Tables’).</li>
<li>By use of “Form Factors.”</li>
</ol>
<p>Whew, that is a long list! What is awesome about this list is that there are still things unexplained on it. For example, number 18? No clue what that means. Neither does Pat. Professor Hazard just dropped that little tidbit there, and walked away.</p>
<p>Also, number 13, the Lill circle is what I was working with in my last post on <a href="../../blog/2024-09-22-visualizing-imaginary-roots/index.html">Visualizing the imaginary roots</a>! I didn’t know it, but that is what I was doing. Of course, there is a more general description than I did, and <a href="https://pballew.blogspot.com/2014/05/more-geometric-solutions-to-quadratics.html" target="_blank">Pat does that on his blog as well</a> in a followup post in 2024. In addition, John Golden created a really <a href="https://www.geogebra.org/m/jvRAhucr" target="_blank">nice Geogebra display of it</a>. In my post, I assumed that the center of the circle was on the x-axis, so the y-values were zero. That does not need to be assumed, and that is corrected with the Lill Circle ideas.</p>
<p>There are also books which give geometric solutions of quadratic equations. Chapter 19 of this book “<a href="https://projecteuclid.org/eBooks/books-by-independent-authors/experiencing-geometry/toc/10.3792/euclid/9781429799850" target="_blank">Experience Geometry: Euclidean and Non-Euclidean with History</a>” is entitled, “<a href="https://projecteuclid.org/ebooks/books-by-independent-authors/Experiencing-Geometry/Chapter/Chapter-19-Geometric-Solutions-of-Quadratic-and-Cubic-Equations/10.3792/euclid/9781429799850-23" target="_blank">Geometric Solutions to Quadratic and Cubic Equations</a>.” It gives a wonderful history of solving these equations, and explains why negative numbers have been so problematic in history.</p>
<hr>
<p>I want to pick on number 8 though, “By the formula.”</p>
<section id="glenns-addition-and-suggestion-on-teaching-the-qf" class="level2">
<h2 class="anchored" data-anchor-id="glenns-addition-and-suggestion-on-teaching-the-qf">Glenn’s Addition and suggestion on teaching the QF</h2>
<p>I had the pleasure to work with a group of mathematics teachers from the Fulbright Teaching Excellence program. They were from several different countries; Eastern Europe, Asia, South America, Central America, and more. One of the things that came out of our discussion is that they were aghast, and I mean just floored, at how we teach the quadratic formula.</p>
<p>That we do the entire thing, all at once, was shocking to them.</p>
<p><img src="https://latex.codecogs.com/png.latex?%0Ax%20=%20%5Cfrac%7B-b%20%5Cpm%20%5Csqrt%7Bb%5E2%20-4ac%7D%7D%7B2a%7D%0A"></p>
<p>That we would ask learners to enter all the values all at once, and then enter them in the calculator all at once. Gah! So many opportunities for errors.</p>
<p>Here is how they teach it.</p>
<p>First, they ask learners to calculate the discriminant. <img src="https://latex.codecogs.com/png.latex?D%20=%20b%5E2-4ac"></p>
<p>They have a conversation about the meaning of D. Is the value positive? Negative? Zero? What does it mean for the parabola given that information? What does it mean for the solutions to the equation given that information?</p>
<p>Then, and ONLY then, do they ask the learners to calculate:</p>
<p><img src="https://latex.codecogs.com/png.latex?%0Ax%20=%20%5Cfrac%7B-b%7D%7B2a%7D%20%5Cpm%20%5Cfrac%7B%5Csqrt%7BD%7D%7D%7B2a%7D%0A"></p>
<p>Wow! The opportunity for errors go way, way down. Much less chance of calculator mistake.</p>
<p>There is another benefit to writing it this way. Now, it is very clear, why there is a value for the axis of symmetry, and to that value, we add, and subtract, the same value to get the roots. Symmetry is easily expressed in the equation.</p>
<p>Aha! We have a middle ‘point’ and a ‘point’ on either side that is the same distance away!</p>
<p>The structure of the algebraic solution now also matches the structure of the graph of the parabola. That is a win!</p>
</section>
<section id="po-shen-lohs-method" class="level2">
<h2 class="anchored" data-anchor-id="po-shen-lohs-method">Po-Shen Loh’s method</h2>
<p>But, we are not done. There are 18 methods above. I modified one, but didn’t really add one. I want to change that.</p>
<p><a href="https://www.poshenloh.com/quadraticdetail/" target="_blank">Po-Shen Loh described one more</a>! So, without further ado, here is the addition in 5 steps:</p>
<ol type="1">
<li>If you find r and s with sum −B and product C, then <img src="https://latex.codecogs.com/png.latex?x%5E2+Bx+C=(x%E2%88%92r)(x%E2%88%92s)">, and they are all the roots (V)</li>
<li>Two numbers sum to <img src="https://latex.codecogs.com/png.latex?-B"> when they are <img src="https://latex.codecogs.com/png.latex?%E2%88%92B%5E2%20%5Cpm%20u"> (BG)</li>
<li>Their product is <img src="https://latex.codecogs.com/png.latex?C"> when <img src="https://latex.codecogs.com/png.latex?%5Cfrac%7BB%5E2%7D%7B4%7D-u%5E2%20=%20C"> (BG)</li>
<li>Square root always gives valid <img src="https://latex.codecogs.com/png.latex?u"> (BG)</li>
<li>Thus <img src="https://latex.codecogs.com/png.latex?%E2%88%92B%5E2%20%C2%B1u"> work as <img src="https://latex.codecogs.com/png.latex?r"> and <img src="https://latex.codecogs.com/png.latex?s">, and are all the roots</li>
</ol>
<ol start="22" type="A">
<li>Known hundreds of years ago (Viète) (BG) Known thousands of years ago (Babylonians, Greeks)</li>
</ol>
<p>Dr.&nbsp;Loh also gives an indication of the history, which is nice. I duplicated that here using the V and BG indicators. The history of these methods is really interesting and worthwhile discussion too!</p>
</section>
<section id="david-butlers-addition" class="level2">
<h2 class="anchored" data-anchor-id="david-butlers-addition">David Butler’s addition</h2>
<p>And to add number 20 to the list, I lean into <a href="https://www.adelaide.edu.au/mathslearning/news/list/2022/07/26/where-the-complex-points-are-i-arrows" target="_blank">David Butler, and his creation of “i-arrows”</a>. If you go back to my post on <a href="../../blog/2024-09-22-visualizing-imaginary-roots/index.html" target="_blank">Visualizing the Imaginary solutions</a>, you will see that we have to “rotate the circle out of the page” in order to reach the imaginary plane. This is a HARD thing for high school learners to grasp. But Dr.&nbsp;Butler has created something that fixes this!</p>
<p><img src="https://mrwaddell.net/blog/2024-09-23-different-ways-of-solving-quadratics/i-arrows.png" class="img-fluid" width="200"></p>
<p>This is found on page 31 of his amazing description. His idea of ‘i-arrows’ goes far, far beyond what is necessary for simple quadratics, but it definitely can be used to demonstrate complex roots without the need for orthogonal rotation.</p>
<p>I love it!</p>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>Quadratics</category>
  <category>Teaching</category>
  <category>Inquiry</category>
  <guid>https://mrwaddell.net/blog/2024-09-23-different-ways-of-solving-quadratics/</guid>
  <pubDate>Mon, 23 Sep 2024 07:00:00 GMT</pubDate>
</item>
<item>
  <title>Visualizing imaginary roots</title>
  <dc:creator>Glenn Waddell, Jr.</dc:creator>
  <link>https://mrwaddell.net/blog/2024-09-22-visualizing-imaginary-roots/</link>
  <description><![CDATA[ 




<p>The main post where all my quadratic posts are listed <a href="../../blog/2024-09-15-exploring-quadratics-an-overview/index.html">can be found here</a>.</p>
<p><strong>This is a redo of a post from 27 July 2012. It was lost in the great blog destruction of 2024, but resurrected here.</strong></p>
<p>Learners have a difficult time with quadratics. Afterall, there can be 2 solutions, 1 solution, or no solutions in Algebra 1, and then in Algebra 2, we come at them with the fact that those equations with no solution really do have 2 solutions after all, they are just “imaginary” (could there be a worse name for them, really? Thanks a lot Descartes.”)</p>
<p>But I came across a picture on some site one day, and it has stuck with me. I never bookmarked it, or wrote down the site, so it is lost to me (and I have searched hard for it) but the work blew my mind, and as I have shown it to learners, they have at least gotten a sense that the “imaginary” really does have meaning. I will reconstruct that reasoning I saw here, and then prove it below.</p>
<p>Let’s begin with 2 equations and graphs that are simple, straight-forward and make sense.</p>
<div>
<p><img src="https://mrwaddell.net/blog/2024-09-22-visualizing-imaginary-roots/graph1.gif" class="img-fluid" width="200"> <img src="https://mrwaddell.net/blog/2024-09-22-visualizing-imaginary-roots/graph2.gif" class="img-fluid" width="200"></p>
</div>
<p>Respectively, the equations are: <img src="https://latex.codecogs.com/png.latex?%0Ay=x%5E2-4x+3%20%5Cquad%20%5Ctextrm%7Band%7D%20%20%5Cquad%20y=x%5E2%20-%204x%20+4%0A"></p>
<p>A simple change of one number changes the number of solutions from 2 distinct to 2 repeating solutions, and learners don’t have a problem with that idea, generally. Then comes this trouble maker.</p>
<div>
<p><img src="https://mrwaddell.net/blog/2024-09-22-visualizing-imaginary-roots/graph3.gif" class="img-fluid" width="200"></p>
</div>
<p><img src="https://latex.codecogs.com/png.latex?%0Ay=x%5E2-4x+6%0A"></p>
<p>Now they have to do the whole Quadratic formula to get the solution, and the solution has those <em>i</em> thingies in it, which makes them all confused and irritated until they wrap their heads around it. And why does it still have 2 solutions? It doesn’t touch at all!</p>
<p>But wait! We can play a game with this quadratic function. What if we reflect the parabola around the vertex in the downward direction? Then we end up with something that looks like this:</p>
<div>
<p><img src="https://mrwaddell.net/blog/2024-09-22-visualizing-imaginary-roots/graph4.gif" class="img-fluid" width="200"></p>
</div>
<p>To do this reflection, we first have to complete the square on the original equation to get</p>
<p><img src="https://latex.codecogs.com/png.latex?%0Ay%20=%20(x-2)%5E2%20+2%0A">.</p>
<p>Now, with this equation, we can put a minus sign into the equation and get the reflection, <img src="https://latex.codecogs.com/png.latex?%0Ay%20=%20-(x-2)%5E2%20+%202.%0A"></p>
<p>But hold on, see those 2 points where it crosses the X-axis? And see the Axis of Symmetry that goes through both equations? If we use those three points as definitions for a circle, we get the following graph and equation.</p>
<div>
<p><img src="https://mrwaddell.net/blog/2024-09-22-visualizing-imaginary-roots/graph5.gif" class="img-fluid" width="200"></p>
</div>
<p><img src="https://latex.codecogs.com/png.latex?%0A(x-2)%5E2%20+%20y%5E2%20=%202%0A"></p>
<p>Guess what the solution to the original quadratic equation is. If you guessed <img src="https://latex.codecogs.com/png.latex?%0A2%20+%20i%5Csqrt%7B2%7D%20%5Cquad%20%5Ctextrm%7Band%7D%20%20%5Cquad%202%20%E2%80%93%20i%5Csqrt2%20"> then you are absolutely correct.</p>
<p>The real number part of the complex solution of a quadratic with two imaginary roots is the x value of the Axis of Symmetry. That is easy to see and understand. On to the more abstract.</p>
<p>If we rotate the circle out of the page 90 degrees (or, if we rotate the circle orthogonal to the page) we will now have the circle in the IMAGINARY plane! And the radius of the circle is sqrt(2), which we add and subtract to the center for the imaginary roots (and we multiply by i, because we are in the imaginary plane, not the real plane).</p>
<p>[If we want to get sloppy for a second, we <strong>could</strong> say that the reflected parabola shows us where those two roots are. BUT, this is sloppy, and useful only to help learners understand that there is a connection between the original parabola and the roots we calculate using the Quadratic Function. ]</p>
<p>Okay, mind blown. Why? How could I prove this is always true in general?</p>
<p>Aha! now comes into play the hours I spend on a motorcycle every summer. How could I PROVE that this will always work? I have the proof.</p>
<p>Okay, on to the proof! (this was originally 2 different posts, but I am combining them since I can. And since I am rebuilding them anyway.)</p>
<p>The Goal:</p>
<p><strong>To prove that in a general case, the circle that is created by reflecting a parabola with imaginary roots (the orange one above) about its vertex (the black one above) will have as its radius the value of the imaginary roots of the original.</strong></p>
<p>We will begin with:</p>
<p><span id="eq-1"><img src="https://latex.codecogs.com/png.latex?%0Ay=ax%5E2-bx+c%0A%5Ctag%7B1%7D"></span></p>
<p>as our initial equation, with one requirement that the discriminate is negative;</p>
<p><span id="eq-2"><img src="https://latex.codecogs.com/png.latex?%0Ab%5E2%20-4ac%20%3C%200%0A%5Ctag%7B2%7D"></span></p>
<p>This will ensure that our initial quadratic equation has imaginary roots and the parabola exists above the x axis as shown.</p>
<p>Now, we need to reflect this equation around the vertex, but just adding a negative sign in front of the “a” will not do it. If we add that sign in and make it “-a” it will reflect around the x-axis, not the vertex. Therefore, we are going to need to complete the square, get the original equation in vertex form and then introduce the minus sign to reflect.</p>
<p>Given the equation</p>
<p><span id="eq-3"><img src="https://latex.codecogs.com/png.latex?%0Ay=ax%5E2-bx+c%0A%5Ctag%7B3%7D"></span></p>
<p>First, set the y=0, and divide all terms by “a”:</p>
<p><span id="eq-4"><img src="https://latex.codecogs.com/png.latex?%0A0=%20x%5E2%20-%20%5Cfrac%7Bb%7D%7Ba%7D%20x%20+%20%5Cfrac%7Bc%7D%7Ba%7D%0A%5Ctag%7B4%7D"></span></p>
<p>This gives us a first coefficient of 1, which makes</p>
<p>Completing the square much, much easier. Next, we will complete the square by using they standard method, and square of the term. The square is added and subtracted from the same side of the equation. (It could be added to both sides, that is a personal preference.)</p>
<p><span id="eq-5"><img src="https://latex.codecogs.com/png.latex?%0A0%20=%20x%5E2%20+%20%5Cfrac%7Bb%7D%7Ba%7D%20+%20%5Cleft(%5Cfrac%7Bb%7D%7B2a%7D%20%5Cright)%5E2%20-%20%5Cleft(%5Cfrac%7Bb%7D%7B2a%7D%20%5Cright)%5E2%20+%20%5Cfrac%7Bc%7D%7Ba%7D%0A%5Ctag%7B5%7D"></span></p>
<p>From here, we construct the perfect square trinomial with the extra two terms</p>
<p><span id="eq-6"><img src="https://latex.codecogs.com/png.latex?%0A0%20=%20%5Cleft(x%20+%20%5Cfrac%7Bb%7D%7B2a%7D%20%5Cright)%5E2%20-%20%5Cleft(%5Cfrac%7Bb%7D%7B2a%7D%20%5Cright)%5E2%20+%20%5Cfrac%7Bc%7D%7Ba%7D%0A%5Ctag%7B6%7D"></span></p>
<p>And we now have the equation in its ‘vertex’ form, where the vertex is (h,k), and the h value is also the value of the axis of symmetry. It is also the x value of the center of the circle we are looking for, and since it is on the x axis, the center is:</p>
<p><img src="https://latex.codecogs.com/png.latex?%0A%5Cleft(-%5Cfrac%7Bb%7D%7B2a%7D%20,%200%20%5Cright)%0A"></p>
<p>We will need this later.</p>
<p>The reflected parabola is easy to find from equation 6, the vertex form. All we need to do is reflect the equation around the vertex.</p>
<p><span id="eq-7"><img src="https://latex.codecogs.com/png.latex?%0A0%20=%20-%5Cleft(x%20+%20%5Cfrac%7Bb%7D%7B2a%7D%5Cright)%5E2%20-%20%5Cleft(%5Cfrac%7Bb%7D%7B2a%7D%20%5Cright)%5E2%20+%20%5Cfrac%7Bc%7D%7Ba%7D%0A%5Ctag%7B7%7D"></span></p>
<p>Add &amp; Subtract the constant terms from both sides, and multiply by -1:</p>
<p><span id="eq-8"><img src="https://latex.codecogs.com/png.latex?%0A-%5Cleft(%5Cfrac%7Bb%7D%7B2a%7D%20%5Cright)%5E2%20+%20%5Cfrac%7Bc%7D%7Ba%7D%20=%20%5Cleft(x%20+%20%5Cfrac%7Bb%7D%7B2a%7D%20%5Cright)%5E2%0A%5Ctag%7B8%7D"></span></p>
<p>Take the square root of both sides:</p>
<p><span id="eq-9"><img src="https://latex.codecogs.com/png.latex?%0A%5Cpm%20%5Csqrt%7B-(%5Cfrac%7Bb%7D%7B2a%7D)%5E2%20+%20%5Cfrac%7Bc%7D%7Ba%7D%7D%20=%20x%20+%20%5Cfrac%7Bb%7D%7B2a%7D%0A%5Ctag%7B9%7D"></span></p>
<p>Finally subtract the constant term from both sides:</p>
<p><span id="eq-10"><img src="https://latex.codecogs.com/png.latex?%0A-%20%5Cfrac%7Bb%7D%7B2a%7D%20%5Cpm%20%5Csqrt%7B-%5Cleft(%5Cfrac%7Bb%7D%7B2a%7D%5Cright)%5E2%20+%20%5Cfrac%7Bc%7D%7Ba%7D%7D%20=%20x%20%20%0A%5Ctag%7B10%7D"></span></p>
<p>Notice that we have essentially derived a version of the quadratic formula. It doesn’t look exactly like the standard version we all memorize, but it is the same, with one important difference. There is a sign change to the terms inside the radical sign! That will be very important.</p>
<p>This formula gives us where the reflected parabola crosses the x-axis, so we now have 2 points on the circle, the plus and minus, and the center of the circle.</p>
<p>The final step of the proof is to show that the radius of the circle, or to put it in another way, the distance from the center of the circle to one of the roots of the reflected parabola, is identical to the imaginary part of the solution / roots of the non-inverted parabola. So, onward to the distance formula.</p>
<p>We need to find the distance from</p>
<p><span id="eq-11"><img src="https://latex.codecogs.com/png.latex?%0A%5Cleft(%20-%5Cfrac%7Bb%7D%7B2a%7D%20,%200%20%5Cright)%20%5Cquad%20%5Ctextrm%7Bto%7D%20%20%5Cquad%20%5Cleft(-%20%5Cfrac%7Bb%7D%7B2a%7D%20%5Cpm%20%5Csqrt%7B-%5Cleft(%5Cfrac%7Bb%7D%7B2a%7D%5Cright)%5E2%20+%20%5Cfrac%7Bc%7D%7Ba%7D%7D,0%20%5Cright)%0A%5Ctag%7B11%7D"></span></p>
<p>Distance formula comes in handy here:</p>
<p><span id="eq-Distance"><img src="https://latex.codecogs.com/png.latex?%0AD=%5Csqrt%7B(x_1%20-%20x_2)%5E2%20+%20(y_1%20-%20y_2)%5E2%7D%0A%5Ctag%7B12%7D"></span></p>
<p>Insert the values for x and y from our two points (thankfully the y’s are both zero), and using only the + value from the plus/minus:</p>
<p><span id="eq-12"><img src="https://latex.codecogs.com/png.latex?%0AD=%20%5Csqrt%7B%20%5Cleft(%5C%20-%5Cfrac%7Bb%7D%7B2a%7D%20-%20%5Cleft(-%20%5Cfrac%7Bb%7D%7B2a%7D%20+%20%5Csqrt%7B-(%5Cfrac%7Bb%7D%7B2a%7D)%5E2%20+%20%5Cfrac%7Bc%7D%7Ba%7D%7D%20%5Cright)%20%5Cright)%5E2%20+%20(0-0)%5E2%7D%0A%5Ctag%7B13%7D"></span></p>
<p>This appears ugly, but the first two terms are zero, the third term is squared, leaving us with:</p>
<p><span id="eq-13"><img src="https://latex.codecogs.com/png.latex?%0AD%20=%20%5Csqrt%7B-%20%5Cleft(%20%5Cfrac%7Bb%7D%7B2a%7D%20%5Cright)%5E2%20+%20%5Cfrac%7Bc%7D%7Ba%7D%7D%0A%5Ctag%7B14%7D"></span></p>
<p>This must be positive because distances are always positive, so we know that this value is positive as well, so we do not have an imaginary number.</p>
<p>[And yes, I am cheating. I am leaving it to the reader to show that the way it is written above in the last step as the distance and the regular discriminant are essentially equivalent.]</p>
<p>At this point, with some additional algebra, we can see the typical “right” part of the quadratic formula,</p>
<p><span id="eq-14"><img src="https://latex.codecogs.com/png.latex?%0A%5Cfrac%20%7B%5Csqrt%7Bb%5E2%20-4ac%7D%7D%7B2a%7D%0A%5Ctag%7B15%7D"></span></p>
<p>We are only missing the “left” part, the location of the center of the circle:</p>
<p><img src="https://latex.codecogs.com/png.latex?%0A%5Cfrac%7B-b%7D%7B2a%7D%0A"></p>
<p>assembling the distance from the center, on either side of the center, of the circle, we get the both distances:</p>
<p><span id="eq-QuadFormula"><img src="https://latex.codecogs.com/png.latex?%0A%5Cfrac%7B-b%7D%7B2a%7D%20%5Cpm%20%5Cfrac%20%7B%5Csqrt%7Bb%5E2%20-4ac%7D%7D%7B2a%7D%0A%5Ctag%7B16%7D"></span></p>
<p>And voila! We have proven that the circle represents the roots of the quadratic! And along the way, have also derived the quadratic formula.</p>
<p>Yay!</p>
<p>And of course, I did not discover this, nor did I come up with this on my own. There was that website that gave me the initial idea, and there are other sources that explain this better.</p>
<p>For example, Francis Su does a <a href="https://math.hmc.edu/funfacts/complex-roots-made-visible/" target="_blank">clearer and better explanation on his site</a>. This resembles what I described in 2012, but it was not this site or image. Clearly the image and idea has been around a long time. I spent hours trying to figure out how to prove this idea, and Francis gives a better method for proving it right there at the bottom!</p>
<p>There is a great video <a href="https://www.youtube.com/watch?v=T-c8hvMXENo" target="_blank">introducing complex numbers, found here.</a></p>
<p>And this amazing link pushes <a href="https://www.bikinfo.com/HTML/quadratic.html" target="_blank">the idea into 3 dimensions. Love this!</a></p>
<p>Also, from Teaching Mathematics, 2nd edition by m. Sobel and E. Maletsky. This image gives a very clear, understandable way to connect this for learners. This book is now in the 3rd ed, and fairly inexpensive to purchase.</p>
<div id="image_from_book">
<p><img src="https://mrwaddell.net/blog/2024-09-22-visualizing-imaginary-roots/Real-Complex-roots-of-quadratic.jpg" class="img-fluid" width="300"></p>
</div>
<p>Also, in my recreating this post, I had the advantage of using RStudio and Quarto, which means I was able to write this in LaTeX. The first time, in 2012, I wrote all the equations in Word’s editor, and pasted them as images. So much easier just to write in LaTeX.</p>



<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>Quadratics</category>
  <category>Proof</category>
  <category>Teaching</category>
  <guid>https://mrwaddell.net/blog/2024-09-22-visualizing-imaginary-roots/</guid>
  <pubDate>Sun, 22 Sep 2024 07:00:00 GMT</pubDate>
</item>
<item>
  <title>Quadratics - starting the exploration</title>
  <dc:creator>Glenn Waddell, Jr.</dc:creator>
  <link>https://mrwaddell.net/blog/2024-09-19-quadratics-starting-the-exploration/</link>
  <description><![CDATA[ 




<p>The main post where all my quadratic posts are listed <a href="../../blog/2024-09-15-exploring-quadratics-an-overview/index.html">can be found here</a>.</p>
<p>I want to start the exploration here with an introduction that maybe not every teacher or math person has thought about. We jump to quadratics, and sometimes don’t think about how we build a quadratic function from simpler, more basic functions. For example, look at the image:</p>
<p><img src="https://mrwaddell.net/blog/2024-09-19-quadratics-starting-the-exploration/2lines.png" class="img-fluid" width="400"></p>
<p>I intentionally wrote the two lines in function notation. We have one line with a negative slope and x-intercept of (2,0) and another line with a positive slope and an x-intercept of (3,0). They have an intercept with each other at (2.5,-0.5).</p>
<p>But look what happens when we multiply the two functions.</p>
<p><img src="https://mrwaddell.net/blog/2024-09-19-quadratics-starting-the-exploration/2linesmult.png" class="img-fluid" width="400"></p>
<p>We get the quadratic! In fact, we get the intercept form of the quadratic function! And, since the two lines intersect, we get the vertex as the x value of the line intersection, and the square of the y value, or (2.5,+0.25).</p>
<p>Of course, this doesn’t work if the lines are parallel or have different slopes. Then the vertex of the parabola is the average of the x-intercepts of the lines, and then the values multiplied.</p>
<p><img src="https://mrwaddell.net/blog/2024-09-19-quadratics-starting-the-exploration/2linesbothpos.png" class="img-fluid" width="400"></p>
<p>In this case, the average is 0.5, so the y value of the vertex is found at f(0.5)*g(0.5), so the vertex is (0.5, -6.25).</p>
<p>Yeah, yeah, yeah, we have other tools to find these same values, but the lines literally give us the answers! A quadratic function is constructed from two lines multiplied. If we want to connect lines to the rest of the algebra curriculum, start here.</p>
<p>I also want to take a moment to reinforce some important language. I have tried to be careful in my explanations above, and use the appropriate language of roots, zeros, solutions, and intercepts. The language often gets muddled, and I know some teachers have even called these items “ZIRaS” which stands for “Zeros, Intercepts, Roots and Solutions” because they “mean the same thing.”</p>
<p>I want to argue they don’t. Why would we have four different words for the same thing? As math people, we would not. If we have four words, it is because they four things mean something different.</p>
<p><a href="https://mathequalslove.net/roots-solutions-zeros-x-intercepts-posters/" target="_blank">Sarah, at the blog “Math = Love”</a> has a great post on this. She even has posters you can download.</p>
<p>The following is the correct usage of the terms:</p>
<blockquote class="blockquote">
<p>Expressions have Roots: (x-3)(x+2)</p>
<p>Equations have Solutions: (x-3)(x+2) = 0</p>
<p>Functions have Zeros: f(x) = (x-3)(x+2)</p>
<p>Graphs have x-intercepts: see the graph above.</p>
</blockquote>
<p>But wait, you say. The answers to each of the four different things above are the same values. Not quite, I say. The x-intercepts are points. (3,0) and (-2,0). That matters. A lot. We get them by looking at the graph, and seeing where the parabola crosses the x axis.We get that from the graph of the parabola (the actual shape of the quadratic function).</p>
<p>The zeros of the function are numbers that when substituted into the function produce a zero output, ie.where f(x)=0. In this case, the two values are x=3 and x=2. If we are not careful, we could assume that we just described two vertical lines, but we did not. We described two values to substitute into a function.</p>
<p>The solution is the values we get by using the zero product property, after setting the equation equal to zero. We set each of the two products equal to zero and solve, (x-3)=0 and (x+2)=0, which results in two answers, x=3, and x=-2. Again, if these were on a graph, they would be vertical lines. We are not graphing.</p>
<p>Finally, the roots. This one is more abstract to explain, because the roots are simply (x+2)(x-3). The roots are the factored form of the quadratic expression, and it isn’t equal to anything, so we can’t set it equal to zero. If it was equaling zero, it would be an equation!</p>
<p>This post sets the stage for the rest. I am going to be careful in language, but also push some boundaries into different aspects of quadratics. Let me know on Bluesky or Mastodon what you think. I haven’t figured out how to incorporate comments here yet.</p>



<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>Quadratics</category>
  <category>Inquiry</category>
  <category>Teaching</category>
  <guid>https://mrwaddell.net/blog/2024-09-19-quadratics-starting-the-exploration/</guid>
  <pubDate>Thu, 19 Sep 2024 07:00:00 GMT</pubDate>
</item>
<item>
  <title>Exploring quadratics - an overview</title>
  <dc:creator>Glenn Waddell, Jr.</dc:creator>
  <link>https://mrwaddell.net/blog/2024-09-15-exploring-quadratics-an-overview/</link>
  <description><![CDATA[ 




<p>Quadratics are an interesting topic. They are required content in all math classes, for good reason, but I have always thought that there is more to them than meets the eye, so to speak.</p>
<p><img src="https://mrwaddell.net/blog/2024-09-15-exploring-quadratics-an-overview/quad1.png" class="img-fluid" width="200"></p>
<p>Just look at it. It is so wonderful to view and behold. But the simplicity hides some really interesting features. One reason it is so interesting, is that it is one of the few functions that has all three forms for every function: an intercept form, a standard form, and translation form. Not every cubic function can have all three forms. See! Already some interesting features. With that in mind, onward!</p>
<p>In this post, I will give an overview of several different connections I have found over the last few years, and then dive into each one of them in a separate post. There are so many interesting things to explore. Below, I will list some interesting “discoveries” and connections. I put “discoveries” in quotes for a reason. These are all personal discoveries, not discoveries that had not been discovered before by much smarter people than I. This is just my path to rediscovering some really interesting things.</p>
<p><a href="../../blog/2024-09-19-quadratics-starting-the-exploration/index.html">First, an introduction to quadratics</a>. We often, as teachers, say that it is the squared term, but really, it is the fact that we multiplied two lines together that makes the squared term! See, THIS is why we need to really understand lines well. If we understand lines, then we build quadratics and parabolas out of lines! There is also a difference among the terms ‘zeros,’ ‘roots,’ ‘solutions,’ and ‘intercepts.’ I dive into those too in this post.</p>
<p>I recreate a post from 20212 where <a href="../../blog/2024-09-22-visualizing-imaginary-roots/index.html">I uncovered that the imaginary roots of quadratics “are” the real roots of the same quadratic</a> that was flipped over its own vertex. I put “are” in quotes, because it really requires rotating a circle into the imaginary plane from the real plane. There is my own proof of the idea in this post, but of course, there are other, easier proofs. I made it too complex.</p>
<p><a href="../2024-09-23-different-ways-of-solving-quadratics">Next, I follow up on a post</a> written in 2007 by Pat Bellew. He writes about 18 different ways of analytically solving for the roots of quadratics. I didn’t see this in 2007, but instead read <a href="https://pballew.blogspot.com/2024/01/solving-quadratic-equations-by-analytic.html" target="_blank">the 2024 version of this post</a>. Amazing! A very interesting dive into the topic. I am expanding on a couple of things in this post and adding 2 more methods. One of the things I add to Pat’s amazing post, is a <strong>different way of teaching the quadratic formula</strong>. I worked with some international mathematics teachers who were here on the Fulbright Teaching Excellence program. They introduced me to a different (and I think better) way to teach and understand the formula. There are also two different methods introduced at the end.</p>
<p>Pat also did more with this topic. Also in 2024, He connected the <a href="https://pballew.blogspot.com/2024/04/pythagorean-parabolas.html" target="_blank">idea of Pythagorean Triples with quadratics</a>. I <a href="../2024-09-23-pythagorean-triples-and-parabolas">extend his idea here and generalize it</a> for any Pythagorean Triple (including those found from Fibonacci numbers.) Did you know that every Pythagorean Triple is found as an integer point on a parabola? It’s true, and I prove it.</p>
<p>And there is more to consider. In the Alg curriculum, we <a href="../2024-10-21-all-functions-transformations">dive into the translations of functions</a>, and show that all of these translations are the same. Well, we should approach it that way. I know not all teachers do, but they miss out on making some fabulous connections if they don’t do them all together. These translations are connected to the first post.</p>
<p>Lastly, <a href="../2024-12-01-whatif-we-vary-b">what if we vary the ‘b’ value</a> of a quadratic in standard form? We know, and teach, what happens when the ‘a’ is varied, and what happens when the ‘c’ is varied. But what happens when the ‘b’ value is varied? Something interesting and exciting! I will not spoil it here, but I found it really interesting.</p>



<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>Quadratics</category>
  <category>Teaching</category>
  <category>Inquiry</category>
  <guid>https://mrwaddell.net/blog/2024-09-15-exploring-quadratics-an-overview/</guid>
  <pubDate>Sun, 15 Sep 2024 07:00:00 GMT</pubDate>
  <media:content url="https://mrwaddell.net/blog/2024-09-15-exploring-quadratics-an-overview/quad1.png" medium="image" type="image/png" height="144" width="144"/>
</item>
<item>
  <title>Students reaction to ungrading</title>
  <dc:creator>Glenn Waddell, Jr.</dc:creator>
  <link>https://mrwaddell.net/blog/2024-08-28-students-reaction-to-ungrading/</link>
  <description><![CDATA[ 




<section id="ungrading-as-a-teaching-practice" class="level1">
<h1>Ungrading as a teaching practice</h1>
<p>I am not sure what the end result will be, but if the response from the first two days of classes is any indication, it will be positive. Ungrading is a practice where the instructor does not give grades to the assignments, papers, etc. In fact, you can go far enough that you can ungrade the entire course, and require the learners in the course to have a sit down discussion with the instructor on the final grade!</p>
<p>Guess what version of this I did? LOL.</p>
<p>Of course I went all the way. I explained where I got this idea from in my <a href="../../blog/2024-08-25-ungrading/index.html">previous post</a>. The Ungrading idea is really interesting. All too often, learners simply look at the final grade on an assignment, and call it good. Some will complain if they get a lower grade than they expected, but the majority of learners just take the grade they get and move on.</p>
<p>In fact, when I brought up the question of whether learners actually read the comments on assignments most of them said “no, they just look at the grade.” When I asked, “the why should the instructor give any comments if the majority of learners don’t read them?” they had no answer.</p>
<p>The end result then is to ONLY give comments, and not grades. Break the chain.</p>
<p>So far in the first week, almost all learners were receptive and positive. There were a couple of learners who were still freaked out, and I asked them to talk to me privately and we will address their concerns.</p>
<p>So far. So good. We will see though!</p>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>Ungrading</category>
  <category>Teaching</category>
  <category>Pedagogy</category>
  <guid>https://mrwaddell.net/blog/2024-08-28-students-reaction-to-ungrading/</guid>
  <pubDate>Wed, 28 Aug 2024 07:00:00 GMT</pubDate>
</item>
<item>
  <title>Ungrading as a practice</title>
  <dc:creator>Glenn Waddell, Jr.</dc:creator>
  <link>https://mrwaddell.net/blog/2024-08-25-ungrading/</link>
  <description><![CDATA[ 




<p>I am experimenting this semester with what can be a very “controversial” topic. I am Ungrading. I will not be giving grades for any of the material in the courses I am teaching.</p>
<p>True story.</p>
<p>If you want some details on why and how to do it, see this book:</p>
<p><a href="https://wvupressonline.com/ungrading"><img src="https://mrwaddell.net/blog/2024-08-25-ungrading/ungrading.jpg" class="img-fluid" alt="Ungrading book by Susan D. Blum" width="140"></a></p>
<p>In addition, I am asking all the learners to read this article entitled, “<a href="https://doi.org/10.5951/MTLT.2023.0286" target="_blank">Redefining Grades as Feedback, Not a Finish Line</a>” by Donati et al.&nbsp;(2024). This will set the stage (hopefully) for a discussion on the purpose of grades, and what grades mean to the learner and do the instructor. Tomorrow is the first day of class, so we will see how it goes!</p>
<p>Thanks for coming along on this journey with me.</p>



<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>Pedagogy</category>
  <category>Learning</category>
  <category>Ungrading</category>
  <guid>https://mrwaddell.net/blog/2024-08-25-ungrading/</guid>
  <pubDate>Sun, 25 Aug 2024 07:00:00 GMT</pubDate>
</item>
<item>
  <title>Rebuilding my blog</title>
  <dc:creator>Glenn Waddell, Jr.</dc:creator>
  <link>https://mrwaddell.net/blog/2024-08-16-rebuilding-my-blog/</link>
  <description><![CDATA[ 




<section id="starting-over-but-not-from-scratch" class="level1">
<h1>Starting over, but not from scratch</h1>
<p>I had a huge problem with Wordpress and themes. A theme malfunctioned, corrupted my databases, and after spending a couple hundred dollars on Upwork, it continued to fail me.</p>
<p>It was not the problem of the people at Upwork. They were fabulous. They fixed the first problem I was having, and then several days later, a new problem cropped up. They fixed it, and then a couple of weeks later, and fatal problem occured.</p>
<p>At that point, I just gave up. Mainly because I learned about Quarto, and its integration with R. I use R for research, and knowing that I can write in R, using Quarto to publish the site and blog, means that I can control everything, write in HTML, CSS, and, most importantly YAML and Markdown.</p>
<p>A HUGE sigh of relief. Now I control everything, how it works, how it links, and all the things. Even more importantly, I understand how it works, where with Wordpress, I just trusted the software.</p>
<p>Huge sigh of relief.</p>
<p>Now, since my blog was essentially ruined, I have backups that I need to rebuild here. I can’t just copy and paste, because everything is in pieces. But I will start picking and choosing, and rebuild the important posts first.</p>
<p>Onward!</p>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>Writing</category>
  <category>Coding</category>
  <category>FirstWeeks</category>
  <guid>https://mrwaddell.net/blog/2024-08-16-rebuilding-my-blog/</guid>
  <pubDate>Fri, 16 Aug 2024 07:00:00 GMT</pubDate>
</item>
</channel>
</rss>
