Mathematical notation is terrible. I don't mean this in the usual "we need to invent new symbols to make it clearer" way. I mean it in the way that it has implicit typing that gets coerced constantly. Using Haskell types D :: (R -> R) -> (R -> R). Yet it gets used on things like D 2 = 0 which implies D :: (R -> R). What you've actually done is an implicit conversion of 2 :: R to 2(x) = 2 :: R -> R and 0 is not 0::R i…
I honestly never found this an issue. Shorthand and type coercion is used a lot but at least when taught, it's usually made very explicit what notation means and when things are being excluded. After that point, the notation is the least challenging part.
The Most Common Errors in Undergraduate Mathematics (2009)
111–120 of 161 posts
Re: The Most Common Errors in Undergraduate Mathematics (2009)
#112I studied theoretical mathematics. The absolutely biggest and most common error and really the only one worth to be on list is not internalizing and understanding entirety of material as the course progresses. Everything else should be basically to achieve goal of understanding the entire course material. It is ok to forget later, as long as you are sure you understood it at least when there was a lot of discussion a…
I routinely force them to fully understand some things they learn, and I am more liberal with others.
Mathematics is one of these subjects where there is almost nothing you can afford not to understand. It will absolutely bite you someday.
When learning math there are things that are really new (such as differentials, or operations on fractions) that are conceptually different from other things you just learn (Pythagoras theorem for instance) and I spend a lot of time with them to help them understand the "why" of these operations. Otherwise i know they will have a very, very hard time to follow up.
Physics is lighter - you can have trouble understanding thermodynamics and it will not mean much when doing mechanics. There are parts of physics I never really understood despite having a PhD in physics.
This is in sharp contrast with, say, history where missing a bit does not impact the next things one learns (at least at high school level - and this is from someone who loves history).
Re: The Most Common Errors in Undergraduate Mathematics (2009)
#113Mathematical notation is terrible. I don't mean this in the usual "we need to invent new symbols to make it clearer" way. I mean it in the way that it has implicit typing that gets coerced constantly. Using Haskell types D :: (R -> R) -> (R -> R). Yet it gets used on things like D 2 = 0 which implies D :: (R -> R). What you've actually done is an implicit conversion of 2 :: R to 2(x) = 2 :: R -> R and 0 is not 0::R i…
So you say we should specify when 2 means number two and when it means the constant function? How does it help?
Re: The Most Common Errors in Undergraduate Mathematics (2009)
#114This is sometimes useful. Mathematicians have precision ingrained but this often repeals pupils.
When you start with 'f is a continuous function defined in R of x defined in R, and for each x ..." - well, I am lost. This was the introduction of differentials in my son's high school.
I am a physicist, so I started the other way round, by talking about speed, how it is calculated, how one can get more precise by shortening time and that, eventually, we get to the exact momentary speed.
My son started to ask all kind of question such as how to "get closer" on my wavely drawing, to which I told him "good question - this is possible only when we know the function d(t)", etc.
It is only when he understood the general reason for differentials to exist that we went back to the conditions (continuity, planes, etc.). He actually deduced the continuity constraint himself because he understood the "why".
My math told told us once "I will show you a neat trick that you will not understand this year, but when you understand it next year it will be way less useful to you. Just know that it works only when this and that".
So lack of perfection is sometimes useful for people to understand something at all and not wander off after the first two introductory sentences.
Re: The Most Common Errors in Undergraduate Mathematics (2009)
#115> Lack of clarity often comes in the form of ambiguity This is sometimes useful. Mathematicians have precision ingrained but this often repeals pupils. When you start with 'f is a continuous function defined in R of x defined in R, and for each x ..." - well, I am lost. This was the introduction of differentials in my son's high school. I am a physicist, so I started the other way round, by talking about speed, how i…
Re: The Most Common Errors in Undergraduate Mathematics (2009)
#116But the part that I really want to discuss here is the other part -- i.e., the phrase "if k is any constant." To most teachers, that additional phrase doesn't seem important, because in the teacher's mind "x" usually means a variable and "k" usually means a constant. Most teachers get this right, using these conventions as a redundant booster to their verbal and written communication. Some are grumpy and lazy and wan…
"this variable x and this constant k interact with our Transfer function T" etc.
It's a lot of words but it turns into a sort of drill for the students about the notational norms.
Re: The Most Common Errors in Undergraduate Mathematics (2009)
#117I studied theoretical mathematics. The absolutely biggest and most common error and really the only one worth to be on list is not internalizing and understanding entirety of material as the course progresses. Everything else should be basically to achieve goal of understanding the entire course material. It is ok to forget later, as long as you are sure you understood it at least when there was a lot of discussion a…
I wouldn't be able to pull this off in grad level maths but undergrad it's feasible.
It was a total waste of time though and I regret that approach, but I did what I was given an incentive to do (least effort for max reward)
Re: The Most Common Errors in Undergraduate Mathematics (2009)
#118Mathematical notation is terrible. I don't mean this in the usual "we need to invent new symbols to make it clearer" way. I mean it in the way that it has implicit typing that gets coerced constantly. Using Haskell types D :: (R -> R) -> (R -> R). Yet it gets used on things like D 2 = 0 which implies D :: (R -> R). What you've actually done is an implicit conversion of 2 :: R to 2(x) = 2 :: R -> R and 0 is not 0::R i…
Re: The Most Common Errors in Undergraduate Mathematics (2009)
#119Re: The Most Common Errors in Undergraduate Mathematics (2009)
#120Earlier quoted context omitted.
I honestly never found this an issue. Shorthand and type coercion is used a lot but at least when taught, it's usually made very explicit what notation means and when things are being excluded. After that point, the notation is the least challenging part.
It is not an issue until you start trying to teach any sort of fix point theorem, at which point the wheels fall off because the notion can't deal with higher order functions at all.