1.26 Theorem Prove the existence part of the Division Algorithm.
The Theorem
Let
there exists integers
and
with
Attempted Proof
Let
Since
if
So we have that
Let
This page is intentionally left blank.
1.26 Theorem Prove the existence part of the Division Algorithm.
Let
there exists integers
and
with
Let
Since
if
So we have that
Let
Getting Blogger to correctly display and preview MathJax was a little tricky. You have to add the following to the <head>
section of your template:
<head>
<script src='https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js' type='text/javascript'>
MathJax.Hub.Config({
HTML: ["input/TeX","output/HTML-CSS"],
TeX: { extensions: ["AMSmath.js","AMSsymbols.js"],
equationNumbers: { autoNumber: "AMS" } },
extensions: ["tex2jax.js"],
jax: ["input/TeX","output/HTML-CSS"],
tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true },
"HTML-CSS": { availableFonts: ["TeX"],
linebreaks: { automatic: true } }
});
</script>
...
</head>
Note: You must use https
. Using http://cdn.mathjax.org/mathjax/latest/MathJax.js
will not work in preview mode, and https://cdn.mathjax.org/mathjax/latest/MathJax.js
does not work at all. https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js
is the only url that I found to always work correctly1