Skip to main content

What makes Robin Pemantle’s bag of tricks for teaching math so great?

It’s here, and he even calls it a “bag of tricks”!

Robin’s suggestions are similar to what Deb and I recommend, but Robin’s article is a crisp 25 pages and is purely focused on general advice for getting things to go well in the classroom, whereas we spend most of our book on specific activities related to statistics. Robin’s article would fit in well as a chapter in our book. Considered in that context, I’d say it’s better than the corresponding material in our book (in the second edition, this is Chapter 12, “How to do it”).

I prefer Robin’s article to our chapter because Robin’s article is more focused on what the teacher should do to maintain 100% student involvement during the entire class period.

Here are the sections of the article:

Introduction
Basics
Philosophy
Typical classroom mechanics
Highly recommended procedures
Class composition and small group dynamics
Doing the rounds
Help we’re stuck
Getting groups to work together
Free riders
Staying on task
Students who are behind
Students who are ahead
Managing Socratic discussion
Dead ends
How to listen
Staging
Asking the right questions
Order versus chaos
Curriculum
A vision
Pacing
Resources
Organization
Records
Grading
The bell

He uses examples from mathematics rather than statistics examples, but the general principles should be clear to all.

The actual teaching strategy that Pemantle suggests is very close to what I do in class, which is no surprise: I suppose we’ve both seen the same literature on the importance of active learning, and I suppose we’ve both had frustrating experiences with students not learning in passive, lecture-style classes. What I particularly like about Robin’s document is that he gives advice to handle various important situations; see list above.

I’m not sure when Robin’s document was written. I recommend that Robin take a couple days and do the following steps:

1. Go through it and see if any of the advice has changed. Rewrite where necessary. Or, maybe better: Add a new section at the end, “What have I learned since 1997?” [or whatever year it was that this document was prepared].

2. Remove section 4.3 which is specific to the institution where this material was first used. You’re sitting on dynamite, a wonderful article that can benefit thousands of teachers and students if it’s disseminated widely. In the intro you can say that this article derived from notes for a certain course, that’s enough.

3. Reformat it single-spaced and not using the ugly Latex defaults. Here’s an example using my currently-preferred template. You’ll have your own preferences; my point here is just that you might as well have a document that is more compact and readable.

4. Put the table of documents in the pdf document and also add some references at the end. You want a self-contained article that people can point to and pass around. It’s also fine to have an html page; two formats can reach more audiences.

5. Post it on arxiv, and if you happen to have a friend with a statistics blog, get him to post something on all this.

The post What makes Robin Pemantle’s bag of tricks for teaching math so great? appeared first on Statistical Modeling, Causal Inference, and Social Science.



from Statistical Modeling, Causal Inference, and Social Science https://ift.tt/2Lwu9YA
via IFTTT

Comments

Popular posts from this blog

Controlling legend appearance in ggplot2 with override.aes

[This article was first published on Very statisticious on Very statisticious , and kindly contributed to R-bloggers ]. (You can report issue about the content on this page here ) Want to share your content on R-bloggers? click here if you have a blog, or here if you don't. In ggplot2 , aesthetics and their scale_*() functions change both the plot appearance and the plot legend appearance simultaneously. The override.aes argument in guide_legend() allows the user to change only the legend appearance without affecting the rest of the plot. This is useful for making the legend more readable or for creating certain types of combined legends. In this post I’ll first introduce override.aes with a basic example and then go through three additional plotting scenarios to how other instances where override.aes comes in handy. Table of Contents R packages Introducing override.aes Adding a guides() layer Using the guide argument in scale_*() Changing multiple aesthetic par...

Using RStudio and LaTeX

(This article was first published on r – Experimental Behaviour , and kindly contributed to R-bloggers) This post will explain how to integrate RStudio and LaTeX, especially the inclusion of well-formatted tables and nice-looking graphs and figures produced in RStudio and imported to LaTeX. To follow along you will need RStudio, MS Excel and LaTeX. Using tikzdevice to insert R Graphs into LaTeX I am a very visual thinker. If I want to understand a concept I usually and subconsciously try to visualise it. Therefore, more my PhD I tried to transport a lot of empirical insights by means of  visualization . These range from histograms, or violin plots to show distributions, over bargraphs including error bars to compare means, to interaction- or conditional effects of regression models. For quite a while it was very tedious to include such graphs in LaTeX documents. I tried several ways, like saving them as pdf and then including them in LaTeX as pdf, or any other file ...