5 comments

  1. You’re a better teacher than I had at 13. She really did demand that we write down all the intermediate steps on a test, and would routinely take off points for not doing so in sufficient detail, even when the answer was correct. I remember being frustrated in cases where the question was simple enough that it was easy to see the answer intuitively and verify its correctness, but I then had to come up with some artificial intermediate steps in order to satisfy the teacher.

    Of course, she probably had her reasons. Cheating is an obvious one: it’s easier to sneak a peek at a single number than to inconspicuously copy several lines of equations from the person next to you. And maybe in some cases she was satisfied that student X had come up with his answers honestly, but she felt a moral duty to penalise him anyway in order to be fair to student Y, who she was not so sure about.

    Hmm, perhaps the old joke “don’t let school get in the way of your education” holds deeper truths than I thought..

    (By the way, although test-first development is generally best, writing coverage tests afterwards is still a lot better than not writing them at all. If you do it that way, you will miss some of their benefits, but they will still serve as regression tests in case you break something later while working on something else.)

    Martin Wolf

  2. I’d rather reward the good than punnish the bad because tracking the bad is not very motivating for both teacher and student. However, it seems that most students start with being motivated by getting praise from their teacher. It is the teachers job to move this postive stimulus to the satisfaction a student should get from solving the problem. Not all students get there at the same time (some never do) but that is one of the main tasks of a teacher because in real life there is no teacher and problems hardly ever are as cleanly stated as in the textbooks and there will be no teacher but yourself.

    Teachers who are focused on (in their eyes) the correct behavior will, in reality, be distracted by it. Writing all the lines, writing unit tests, meeting coverage requirements are NEVER a goal in themselves they are a means towards an end. The student should really learn what ends and when the means are useful.

    Yes, some coverage (added later) is always better than non at all. It is too hard to do any solid refactoring without these.

    Erno de Weerd

  3. Another option would be like: http://xkcd.com/759/
    which is the also the same as programmers do 😛

    Rolf Huisman

  4. Rolf, unfortunatly this only works for the product of a number and its square.. LOL

    Erno de Weerd

  5. This post makes it clear my math skills have dwindled. Sigh!

    Wouter

Comments are closed.