Pages

Wednesday, June 24, 2015

Factoring Puzzles

Here are a few examples of factoring puzzles:
Here's the same set up for factoring a trinomial.

Factoring with a > 1 is not much harder, when students remember to find factors of ac that add up to b. Those become the insides of this table, and factoring out GCF's leads to the outsides, and the final factors. 

You may download worksheets here.
Worksheet - Table Puzzles (Multiplication)
Worksheet - Table Puzzles (Factoring)

My recorded lessons for these ideas can be found here:
   Lesson 5a: Factoring Quadratic Expressions into Binomials
   Lesson 5b: Table Puzzles (and Dividing Polynomials)
   Lesson 5c: Factoring Trinomials

Friday, June 12, 2015

Inserting mathematical equations using Latex into Blogger posts


To enter in equations in Blogger posts, try copying the following code into HTML mode at the beginning of your post:

<script type="text/x-mathjax-config">   MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}}); </script> <script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"> </script>

Then switch to compose mode and you can type equations using latex surrounded by single dollar signs and the equations will display properly when published.  For instance, I typed the following:

  Einstein's famous equation was $E=mc^2$.
  The definition of a derivative is $\lim_{h\to0} \frac{f(x+h)-f(x)}{h}$.
  The definition of a derivative is $$\lim_{h\to0} \frac{f(x+h)-f(x)}{h}$$

And this is what displayed:
  Einstein's famous equation was $E=mc^2$.
  The definition of a derivative is $\lim_{h\to0} \frac{f(x+h)-f(x)}{h}$.
  The definition of a derivative is $$\lim_{h\to0} \frac{f(x+h)-f(x)}{h}$$

It appears single dollar signs are for inline equations and double dollar signs are separate centered equations.

I am not an expert in latex, blogger, or html.  I published this article more for my own future reference then as an instruction manual for everyone else, so you can complain in the comments that it didn't work for you if you'd like, but I'm not going to be able to help you fix it.  I learned this information primarily through Steve Holden's Blog.
Related Posts Plugin for WordPress, Blogger...