It’s been a while since I have posted on the blog, but with this post I am starting a personal challenge: To write one post here on the blog each weekday for one month. The idea is to build a habit of posting so that going a day without posting will feel weird and off-schedule. Most likely the posts will be short but “greater than zero” is the idea. Here we go!
It’s hard to believe, but we are in week 4 of the Fall semester already, almost 1/4 of the way through. I’m teaching Discrete Structures for Computer Science this fall, which is a two-semester sequence, and I have two sections of the first semester and one section of the second semester. After my experiences at the RL Moore conference this summer and being around guys like Dana Ernst and T.J. Hitchman, I decided to design the course in an inquiry-based learning (IBL) style in which most of the time in the class is spent with students working in groups on problems and then presenting them at the board.
I haven’t gotten IBL completely figured out yet. The last time I tried IBL was about ten years ago in an abstract algebra course and it was an unmitigated disaster, mainly my fault for a number of reasons but I’ve been gun-shy about going the IBL route ever since. Until now, and boy, am I glad I did it. Let me relate an experience from this morning’s Discrete Structures 1 course, which was an introductory unit on basic combinatorics. Students were working out solutions to several problems on the rule of products when, out of nowhere, two of those problems became a lot more interesting than I intended.
Problem 1: How many integers are there between 100 and 999 that do not use the number 7 in their digits? I figured this one would be trivial for the students, who through their Guided Practice work on this in a previous session showed strong mastery of basic counting before coming to class. The “textbook” solution would say: There are 648 such integers because there are 8 choices for the hundreds digit (can’t use 0 or 7), 9 for the tens digit (can’t use 7), and 9 for the ones digit (likewise); and using the rule of products we get .
But as I worked with groups around the room, I ended up with five different answers to this questions (648 being one of them), all with plausible explanations. Normally I assign eight problems for daily homework because we have 32 students in groups of 4, and each group gets a problem; this time I had each group with differing answers for this problem go to the board to explain their work.
As the instructor, hanging out away from the front/center of the action and just listening to the students present, I spotted the error in the second solution immediately – and I had a choice to make. Either bring it up, or keep my mouth shut. I really wanted to bring it up because that’s what mathematicians are trained to do. But I chose silence – because this is not my show, it’s the students’.
Eventually one team caught the other team’s error – by starting with we undercount the number of integers that are in range by 1 – and the whole class had an “aha” moment. Eventually I did step in, but only to provide perspective. How many of you have ever written a program before that involved indexing an array, and the index went out of bounds? (This is a class of about 85% computer science majors.) Some knowing chuckles and then another “aha” moment as the students made a connection between this silly problem and something they do as programmers that happens all the time.
Problem 2: A frozen yogurt store claims to offer over 1000 flavor combinations. They have strawberry and chocolate flavored froyo. How many toppings do they need to have available in order to make good on their advertising? This also sparked considerable discussion. Lots of people wanted to use binomial coefficients and factorials because, well, isn’t that what you’re supposed to use when you hear the word “combination”? But eventually they made a connection back to an earlier problem: Suppose you have a true-false test with 10 items. How many ways are there to answer (if you are not allowed to give blank response)? The answer is and a few students realized: Oh, it’s like a checklist – for each flavor of yogurt you either do or do not include a topping. So they just reasoned through to arrive an an abstraction, that if there are toppings then there are flavor combinations. So just do a brute-force search to get as the minimum number of toppings.
Again: I saw all the factorials and binomial coefficients being kicked around, and oh, how I wanted to swoop in and save the students from themselves. But I chose to keep my mouth shut, and they figured it out.
One student had this beautiful realization: If is the set of all the toppings that are avaialble (and the cardinality of is ), then the power set is the set of all combinations of flavors, and we learned that there are elements in that power set. We had just covered sets and I couldn’t have been more pleased that he made that connection, which I had not even thought of.
Here’s what I get from this experience:
This isn’t to say the instructor should never talk in class (what would we do? Mime?) but we should stay out of the way and save that “time for telling” until it’s really necessary, and doesn’t detract from what students are doing.