#math-pedagogy
1 messages ¡ Page 58 of 1
I mean the notion of function generally taught in highschool algebra is pretty far from the proper mathematical definition either
Only looking at elementary functions from R to R, and conflating a function and its graph
then blame poor teaching, not poor concept
Would functional programming not be a good way to teach functions?
no
functional programming might be interesting from a logical sense
but then you're restricting your idea of function to that
then there's matters such as currying
and again
functional programming and the history of computation is all built on "how do we formalize computation"
which was entirely mathematical up to that point
you're replacing the source with its own product
Idk maybe I'm just all wrong here
My idea though was that the concept of a function can be tricky to learn because of how abstract and general it is, and programming could make it hands on to an extent
but then in an attempt to teach functions, you'd be stuck explaining monads sooner or later
I think by that point you're hitting the highest form of abstraction
I wasn't thinking "replace math with Python 101 and expect the same result" but rather build programming into math courses
programming might be good as a way to apply math to scenarios (e.g. backprop stuff, regression, etc.) but it's not a substitute for core concepts
application oriented teaching is one thing, substitution is another
If you're not planning on being a mathematician/math educator
Then you shouldn't care that much
Just like I don't care too much to read a thick literary analysis of shakespeare, although I can appreciate shakespeare
having applications more apparent in a math class is one thing
but substituting them with something that hinges on the abstraction is another
programming courses use math, not the other way around
also, if said book were actually university level or something, then at that point you're talking about a book for a subset of people
I feel like your actual problem is something else, being directed at something else
a simple analogy - automata teaches state machines
people wonder why study state machines
because you can effectively model a ton of software as one!
game development? state machines
software modelling and design? state machines
UI control? state machines
is the neglect of such applications bad? yes
but does that equate to "We're now going to teach state machines using the UML convention in Larman"? nope
Well, mathematical programming is a thing and there is a genuine use for things like binary variables in engineering
Here's an example.
Let's say you want to minimise the cost of a process. There are three unit operations to choose from but you can only pick one.
The cost function in index form would look like:
COST = y_i c_i
First constraint would be:
y1 + y2 + y3 <= 1
Of course normally there'd be further constraints too so it wouldn't be as trivial as just picking the cheapest option
Should clarify as well in this context y is a binary variable. A value of 1 means true and 0 means false
So, time for my rant đ
I wonder if the reason why kids struggle so much with negative numbers is choosing to use phrases like "minus 5"? Imagine if it was consistently taught as either adding "negative 5" or subtracting five.
How commonly do you hear yourself saying "minus minus X"?
That leads into the next question, how do you teach a rule like
5x - 3(x+2)
Would that be via distributing a negative 3, or subtracting positive 3 times the quantity (x+2)
Think there's a subtle difference between the two pedagogy wise
I'm gonna be honest and say that when I think of programming as it applies to high school or earlier, I don't think of monads, formalizing computation, backpropagation, regression, automata, state machines, or UML. Didn't even know these terms in 8th grade. Yet I think programming was pretty essential to avoid being confused about high school math concepts (for me)
Yeah, I think programming at high school is simple things like what is a function, what is a variable, what is a bool, etc. Stuff we take for granted
As for 5x - 3(x+2), the first thing they should be able to do is to read it as written and understand exactly what computation is being shown here
Pulling a random number out of my left wrist, maybe 75% of people who struggle with things like this in fact aren't aware that this combination of symbols can actually be read
analogy: teaching someone how to tell the difference between similes and metaphors, having a hard time explaining the difference, and never even finding out that it's because they're illiterate
It's so easy to take literacy of math expressions for granted
I think that would end up being in subtracting the quantity 3(X+2) camp
But what I think is damaging is when it kind of just gets taught procedurally that you multiply everything by -3 and collect like terms
If you could read it correctly, of course it doesn't matter since both methods are equivalent anyway
How would you test for math literacy?
Say you want to know whether they can read 5x - 3(x+2) and you want to avoid false positives as much as possible
You can certainly test for illiteracy
e.g. getting a question right because you know the procedure, but don't actually understand, would be a false positive
If they get it right they may not have correct understanding but if they get it wrong they probably don't have the right understanding
But I want to test for literacy !
I guess it's about being pushy in the classroom and demanding explicit explanations
Keep being as pedantic as possible until they have no choice but to give exact reasoning
How would an English class test literacy of a passage?
I don't necessarily think something like that is much easier as well
An English literacy test shows a sentence or a paragraph then asks questions requiring inference from understanding the sentence or paragraph
So hmm... you could show a piece of math (a proof, for example, or just a theorem statement) and ask questions about it
But in that example, how do you know they're making reasonable inferences, not just pulling something out of nowhere because it's what they were taught
I think English teachers are catching on to that now
I think with the variety of English passages available it's a very high chance that they aren't going to get something they know how to do completely procedurally
Also up to the test designers to make good questions
I've seen a very good one kind of counter argue with his student that what they thought of the passage wasn't necessarily correct
That they read too much into a sentence
That's a good analogy to compare with maths. A student applied a method they were taught procedurally without thinking about whether it's applicable or not
What do you think of using literacy tests in math class?
And yeah every UK exam will have a passage of a book students won't have seen before
As opposed to completely procedural
Because they know most students just revise essays of the classic books like Of Mice and Men
Mm-hmm
I mean arguably literacy is already part of UK exams
Unless you mean including formal notation
In what way is literacy already part of UK exams?
They rarely give a question explicitly like "simplify the ratio 5:10"
Maybe they'd have to read a recipe for 4 cakes and work out how many eggs are needed for 16 as an example
So that's just word problems
I'm talking about mathematical expression literacy
Questions where if they get it wrong, it's because they don't know how to read a mathematical expression (which they should have known)
Like, questions that uncover a misunderstanding of the entire nature of mathematical expressions
So how could you implement something like that with ratio?
I would definitely like to come up with examples of this type of literacy test questions
Reason why I say that btw is a whole section of the curriculum is dedicated to ratio
(-1)^n + (-1)^(n+1)always equals 0 because(-1)^n + (-1)^(n+1) = (-1)^n * (1 + (-1)) = (-1)^n * 0. Does the same argument show that(-2)^n + (-2)^(n+1) = 0?
My first attempt
That is a good question and it would definitely throw a lot of students off simply because it's negative numbers
Plus the wording too. I guarantee some would try to think about factorising (-2)^n + (-2)^n+1 and give the result without realising it's asking if the same argument applies
Ya this is a pretty complex literacy question testing literacy on many levels
Since you mentioned ratios is a big topic
Here's a possible test question for literacy
Does a/b = c/d imply that a/c = b/d? does it imply that a/d = b/c?
(assuming none of these numbers are 0)
This question would be very difficult for those who don't read "a/b = c/d" as an equality of two numbers
I'm noticing being drawn to a type of question format for literacy: the question gives some hypotheses and maybe an argument, and the task is to answer if these hypotheses imply a conclusion and/or whether the argument extends to another setting
I'm liking this format for math exam questions for literacy
It's very much in line with being able to infer something from a passage
That's very well for your own teaching and your own exams.
But suppose you're the Board of Education and you want to come up with a way of monitoring that the school system you fund manages to teach mathematical literacy to students. We'll assume that for the sake of the discussion that you, the Board of Education, actually possess mathematical literacy yourself, and are able to come up with test questions. However, now you have to be extremely careful to keep coming up with completely novel questions to test with -- because if you fall into a rut and start reusing question types, teachers will eventually catch on, figure out a mindless procedure for deciding the kind of questions you usually ask, and start teaching that so they'll have good numbers on their evaluation.
The English subcommittee of the Board of Education has it easier, because there seems to be a lot more narrative literature to pick passages from, than there are really interesting "understanding" questions to ask about the subset of mathematical formalism that K12 students are supposed to learn.
That's the eternal problem of mathematical testing I suppose, not just for literacy but for everything in math
But I don't think it's doomed. Math contests seem to have just enough variety that people can't beat them by just studying question types
e.g. the AIME (15-question 3 hour test run by MAA) has been going on for many years and every year the average score remains 2 to 5 out of 15
Yes, but there's more leeway for being creative when you're explicitly trying to filter for the top few percent and it's your goal that the average "not stupid" kid should fail.
Most contest math questions can have hints added or be broken down into parts to eliminate the factor of being creative/experienced enough to see the solution
then what's left is the ability to understand what you're doing
But anyway, I have no reason to believe that you can't make good standardized tests year by year
This will probably come across as an incredibly immature and idiotic sexist question but that's fine I'd rather learn to do the right thing and say something idiotic than keep on doing the bad thing.
How do I, as someone who grew up socialized as a man, not alienate women in math? I've been told both to "not assume people know less than you" which is absolutely reasonable, but I also often feel the pressure to correct people, regardless of their gender, to change from an "I hate math" mindset and often that comes with explaining things people might know in a well-digested manner (or go a level of complexity down with the explanation), even if they already know them.
So at the core of what I'm saying is, I think I express myself poorly sometimes and feel different pressures to say different things and sometimes it comes out insensitively independent of intent
If anyone has any thing they think I could improve the way I communicate and express myself please do let me know
I'm not a tutor or anything I just thought none of the other channels would be a better place for this kind of question than this one with the crowd it attracts, people who genuinely care about how they affect others in speech and practice
The way I communicate with every student is slightly different. I generally find what works by making lots of mistakes and slowly building relationships with them. It takes time to learn how to effectively commuicate. I think its important to not be hard on yourself and realize you will not do the right thing often early on as you develop a relationship with your students. I find being open to your faults helps and be patient as students begin to get comfortable with you.
How I talk to freshman is way different also than seniors or college students also.
I don't have a good answer for this but I do know some teachers have a gift of charisma where students just respond better to them. In the end your goal should be to present the material clearly and try to help get as many students as possible to understand it using lots of different techniques.
Testing emphasis in math is so damaging. I have found well thought out projects have been a better way to demonstrate student understanding and allows higher students to really push themselves.
For example I gave a simple project this week for my math 1 students after going through graphing inequalities. They had to create some type of picture where they define at least 6 of the inequalities correctly and have at least one correct shaded region. Lower students did very simple designs. Where my higher students had very complicated figures with correct restricted domains for segments multiple shaded regions along with other functions like circles/seni circles etc.
I wish there was a way to develop a culminating project that we could use instead of traditional tests. Though grading would be a nightmare. I think the integration of math and computer science could lead to interesting coding projects that could be checked easily.
Testing is damaging you're right. We all agree making mistakes is important for learning and yet tests focus only on what you got correct
yeah teachers need to learn how to use technology lmao
then we can do cool shit w math
anyway what do u guys think about the SAT starting to be administered online in 2023 or 2024 or whatever
supposedly it will allow more flexible schedules instead of the traditional small number of sessions a year
that should be positive
I'm not a fan of this for students in urban or suburban areas due to the increased likelihood of cheating
I'm a huge fan of it for rural students
As it increases accessibility
Yeah, then they can go into the suburban/urban areas
Nothing has changed
But if they do have internet connection
Then it's a good thing
So it just increases accessibility
I think cheating can be sidestepped by recording the students then having someone skim the tape, this is how https://schoolhouse.world does it that is
it's not feasible for college board to skim through every tape
and im sure there will be a lot of patents who don't want their children being recorded
Yeah, in every case that testing went online
It happened to coincide with a massive spike in cheating
This is true both in the k-12 system and the higher ed system
yeah
So we would be naive to think that skimming videos would do anything really
Unless the consequences of being caught cheating are significantly worse than scoring too low in the first place.
If you believe you can't pass anyway, that's not much worse than failing honestly.
There are companies which specializes in online exams
They use AI for analysing the videos
If the algorithm detects anything suspicious it's notified to someone
Do you think lecturing is easy?
Is it easier than actually teaching
I mean, if the goal of teaching is to induce as much understanding as possible, what's the goal of lecturing?
I'd say the difference is with lecturing the student is expected to take ownership of their own understanding. The lecturer just provides them the knowledge.
Is that easier? Not necessarily, I think it comes with its own challenges. The content you lecture is likely to overlap with your own research. Technical terms that are obvious to people working within your field won't be obvious to students
Plus you also ideally want to convince students that your research is interesting and they should hopefully study it further after passing your course.
lecturing is okay when the students have the resources to make use of it
i think sometimes people lean too close to the "teaching is when i shout the words from the book and they memorize it" side of things
it's not so simple in america anyways, unless you are in a certain position or fine with holding strong on standards
i had a lecturer who seemed real "shouting the words" teaching style but it turned out he wasnt, and actually supplied a lot of resources to succeed
like an online platform that would get people ready for his weekly quizzes
Yup. The difference is lecturers aren't just teaching from the book they probably wrote the book themselves
I had one lecturer who used his own book as a resource
Now that I think of it another main difference is assessment. In teaching you're expected to use assessment to work out what they're struggling with and adapt accordingly. In lecturing that's more on the students to use their surgery hours if they feel like they need it. Of course it doesn't mean they shouldn't address common misunderstandings
a lot of the people with title "lecturer" at my uni have been very good at structuring stuff
of course they are generally teaching linear algebra tops at my school
i have been shocked by a professor before, how little effort they put into it
i actually think lower of it the further i get out, he was also a super harsh grader
i just didnt get why he was teaching intro analysis
well, it was a second section opened so he wasnt first pick i guess
Has anyone here tried writing an exam for a particular topic your teaching before actually teaching it? I wonder If i just write my exam first and focus my lectures on helping them to get to the level of my test. I worry I might be teaching to the test though.
Yet I find at the other end I write a test at the end based on what I think they can do. I am wondering when you create your exams if its at the start or end of a topic?
I do it informally, not actually writing the exam but I sort of think about what it means to "know" the topic. Rather than skills, I kind of aim to get students from "Level n" to "Level n+1" for that topic, where "level" is in the same sense as the Wired 5 Levels video series (if anyone 's seen that)
is it fun to write an exam?
bc to me it sounds fun
but idk it could be like a "ugh I guess I have to do this" to a prof for all I know
I like writing exams and coming up with questions. It is time consuming though. I kind of like my tests to build to a interesting problem that uses several techniques that were covered in previous problems. I try to have the first page be a little easier with straight forward conceptual/skill problems I would hope for all students to reach(C level) and second page trickier conceptual problems or problems that involve using techniques learned applied to problem solving(kind of like contest math flavor). These are problems needed to reach B or A. I only get about 45 minutes for an exam though and teach high school basic math so I keep them fairly short.
Writing good tests is a art though and I be no means have it down. I have noticed most tests I see at the secondary level are garbage. I really like the questions Icy has shared here though and am trying to get to that level. The best tests I took in undergrad were from a professor who was an Olympiad competitor and he came up with interesting problems. The worst tests were just too easy or similar to HW
anyone else massively peeved by this type of problem ive seen a few times that goes like
"the volume of a box is [cubic in x]. find the dimensions of the box" and nothing else
yes
ive seen it many times
i know the intended answer is to factor the cubic but just
ive seen probelms where yes, that was it, there was literally nothing else
As a part of my work, I've had to look into a lot of American middle school math curricula. In contrast to the education here (India), I was impressed by some of the problems that gradually "build up" in steps, but at the same time, I felt that a ton of problems (almost all the ones I had to deal with, but this may be a selection bias) are phrased in an applied, "real world" context. We do have word problems here but still a proportional number of "symbolic" or abstract problems. I'd like to know if phrasing problems in the former manner actually reinforces the mathematical idea, or just makes the students miss the forest for the trees.
The real world problems that average teachers often pick (i.e. the ones they can understand themselves) are too homogeneous, forced, and test-like. The nice real world problems are often the more difficult ones to grasp, because many mathematical ideas are used in a deep way for those problems. Also, average teachers may be scared off of using them in class or exams because after all, in their thoughts, if they struggle to understand it, there is no way their students can succeed in understanding it. Textbooks also tend push the nice real world problems to the very end of the exercises section for that reason.
Ah, I see. How do students usually respond to these elaborate word problems? One point of concern for me is that the amount of words/information can itself get overwhelming and become a barrier in understanding the essence of the problem.
my usual experience with engineering students is exactly as you described, manan
through no fault of their own of course, but rather how engineering math courses tend to be structured
I agree. But is it possible to not allude to real-world phrasing of the problems to such an extent? Or at least give some feel for the abstract setting, and then apply it in context?
certainly, and that would be for the best
but it has to be done early on
i unfortunately mostly deal with masters students
and at that point it is rather deeply ingrained, so increasing the level of abstraction to the required level is met with a response like "everything is super difficult all of a sudden"
and it's very difficult to work around that when students are multicultural
Oooof, that makes sense. Do they eventually get a hang of things, or do most of them just get-by with things somehow?
most just get by and decide to end their studies after the masters program
of the ones that adapt well, about half and half go into academia (phd+) and research positions in companies
Hmm, I see.
part of how these programs try to deal with the issue is to speedrun undergrad in 1 semester
the core topics are covered again very quickly
this is good for people that are doing ok. those with a poor background are immediately turned away, so the first semester has a very high dropout rate
This must be very uneasy for international students I guess
it's one of the main concerns and complaints, yes. universities in germany have state-regulated indicators that include things like number of new students per semester and number of students that graduate on time
so to some extent these gung-ho first semester approaches serve the double role of helping students make up for deficiencies and also weed out many of them
because drop out rate is usually not as heavily weighted as an indicator
not if it happens early in the program
The major downside of having too inane (and yet too predictable) word problems is that students will internalize an approach to them that is not "understand what's happening and then make an informed decision about how to model it mathematically", but rather "consider the symbolic procedures we've learned recently. Pick the procedure whose motivating example in the book sounds most vaguely similar to this problem, and crank the handle on some numbers from the problem". That's how we end up with kids who will cheerfully calculate the age of the shepherd.
I think the word problems serve as a way for teachers to combat the infamous "when will I ever use this" question
but I think (middle and high school) teachers should just emphasize that if they go into stem, they will definitely use the concepts discussed in class, but for everyone else, it is wonderful for problem-solving practice
especially as topics become abstract
Well, word problems are also an attempt to respond to the criticism that "students just learn to execute symbolic procedures without ever understanding what those procedures achieve".
It makes sense, in theory, that if the students are able to solve word problems using a certain procedure, that certifies that the students have understood what the procedure is for.
Unfortunately this reasoning underestimates the ability (and motivation) of students to meta-game homework and tests. "The thing we have just learned is vertex form of quadratics, so I can ignore all the flavor text and just plug the numbers I can see into my formula for vertex form".
yeah I agree
in order for students to have more motivation, we need to make sure that:
- teachers should be knowledgeable of the content at a deep lever so they can teach more precisely why things work
- teachers should be motivated to work, which means that school districts should treat their staff better
- the curricula of the courses should be stripped of the less necessary ideas so that teachers can spend more time on more important and applicable ones
Yeah whats actually happening is the opposite of everything you said
Math teachers are becoming less knowledgeable as districts scramble to lower the bar to fill those positions. Teachers are treated worse every year by admin/parents/students and the curriculums are getting worse each year while we continue to get more work and overcrowded classes. The school system in America is barley holding on and it's only going to get worse based on my few years in the system. It is quite depressing that politicians and the general public could care less also.
Less knowledgeable usually implies less passionate/enthusiastic as well. Not always true in general though
I get the impression a few of the teachers in the US don't have enthusiasm and the kids end up not caring resulting in a vicious cycle
exactly, it's really not feasible
and yeah encouragement of learning would be another outcome of the things I mentioned
exactly, I agree with this
Working on my first day activity in Calculus I, and wanted to share it here
And skipping to the end...

Anyway the idea is to start getting them to review vocabulary that they should remember from precalc
And preview some of the things we'll be able to describe more precisely with limits
What do y'all recommend for polling students using cell phones or laptops?
i usually use doodle
it's kind of limited though, i think it's only for plain text and dates (or at least that is what i've used it for)
AMOGUS???
Sus
I have a counterargument though: students might remember the specific shapes of the graphs rather than the actual terminologies you want them to recall. You might also hear terms like "dotted lines" for asymptotes or "empty and filled dots" for discontinuity, which are fine if you want them to recognise but not really what you're expecting.
Perhaps instead of a single student in each of the "viewer" and "sketcher" roles there should be two or three on each side, with the sketchers allowed to ask clarifying questions (that is, the viewer doesn't just speak into a void and hope for the best). Then if just one student in each group remembers the math function of the symbolism they can bring it up in the conversation.
I'm used to TV pushing the "aLgEbRa iS hArD" narrative, but certainly didn't expect to hear it from @Jeopardy of all places. I really expected better.
@missmayim, please tell me you cringed just a little as someone who cares about STEM education. We're tired of this "PR."
Ironically I genuinely think algebra is what kids generally find to be the easiest
Where they struggle fundamentally is when negative numbers, fractions and decimals are involved.
Put it this way, how often have you seen introducing negatives as a way to make a question more challenging?
English isn't my first language and I went searching what the channel name means.....things went very wrong
this sort of content goes in #chill , not here
thanks!
Not really they generally do the procedure the same but negatives do cause lots of mistakes with arithmetic. Often they don't distribute negatives properly or they make mistakes adding/multiplying with negative numbers. I would say making a problem more challenging is presenting a question in a different way trying to stress there conceptual understanding or multi step problems using several techniques together.
Yup. It's just a general trend I noticed.
Algebraic fractions are a whole other beast to be fair
The best tool a student can have to fix their algebra mistakes is the habit of checking their work by another method
Self-feedback instead of relying on the teacher or answer key or pure memory
itâs much faster to learn a song on the piano and fix mistakes if you can hear what you are playing on the piano than if you canât
This is actually the most practical thing you can ever teach someone. How to check their own work
the only issue with this is if the students are not motivated to check their work
Thatâs like saying some programmers are not motivated to debug their programs before they deploy them
some programmers are not motivated to debug their programs before they deploy them is true
Are there any programmers who can write 10k lines of code without running any part of it to test it once, and have zero bugs (or even compile errors)?
Somehow many people think algebra is expecting that of algebra students when it comes to math
I think the point is that these programmers work does have bugs, as do these students' work have errors
Ok yeah
The saying âitâs okay to make mistakesâ should be fine-tuned to: âitâs okay to make mistakes, as long as you catch most of them pre-productionâ
the analogy breaks down because "early access" is now largely "open beta"
Yeah, my interpretation of gmod's statement was that many students for some reason (myself included when I was younger) do not seem sufficiently motivated to check work, even when it is a simple process
So one has to help them find that motivation as well
I wonder why simply âI want to be rightâ isnât sufficient motivation
Well, for me it was neurodivergence, ADHD can have a big impact on these things
Others suffer from time pressure or other forms of paralyzing anxiety
that component can be there, but there are many that will simply immediately think "oh i saw this in class, it's easy" while being completely wrong in their procedure/answers
not even being able to detect that they need to double check
A lot of people also like, don't view math in the same way mathematicians do, and they see the idea of being wrong vs right as like, incomprehensibly mysterious
Dam but they donât then say âitâs easy so I better make sure my answer is correct so I donât look like a fool in case itâs completely wrongâ
this is similar to asking how students did after an exam
Like, a lot of calc students know they can always just differentiate their antiderivative
but a lot of students don't care enough
you will find many answer with something like "i don't know" or "i answered everything"
not "i know roughly what i have right and wrong"
so you get a combo of lack of interest but also not even knowing what needs to be checked in the first place
Self debugging is a pretty universal life skill tbh
Make it an explicit part of the curriculum!
OTOH plenty of students seem to be motivated enough not to be wrong that they ask in places like here to have their work checked, and still don't seem to know how to sanity check the result themself.
Yeah I wanted to mention that aspect too
that's certainly true, yeah
in that scenario, i do wonder whether the motivation itself makes a difference, then
e.g. wanting to pass/get a good grade/understand/etc.
these students are motivated solely by the grade and not for understanding
100% extrinsic
There is a real motivation though. One day they're gonna be employed and someone is probably going to just take their work at face value. If there's a mistake they'll get the blame
Reason why engineering teams always scrutinise each others calculations
The point of that in education is "it's ok to make mistakes now so we can learn from them"
In fact that refinement of the statement is destroying them further. You're kind of just saying make a mistake as long as you fix it in time. The whole point is to make mistakes so you don't make them again or at least less often
Making a mistake is okay, like I said
But on problems of a type where you can see if the answer satisfies the constraints
Eventually there should be no excuse for the teacher finding the answer doesn't satisfy the constraints which the student could have found himself as well
Yes. In fact maybe problems where the constraint isn't explicitly said but is common sense.
For example, using trigonometry to find missing side lengths. Some students just lack the common sense to realize it's impossible for the opposite to be larger than the hypotenuse
By definition the hypotenuse is the longest side
When I was in high-school, the main reason I wouldn't double check all my answers is because I wouldn't have enough time in an exam
true
I would rather lose 2-3 marks from silly mistakes in return for like 5-6 mins of extra working time on a harder problem
Plus, when you make a silly mistake, it's not because you don't understand the procedure, it's just because you fumbled in the moment. So I cared much less when I made a silly mistake as opposed to a conceptual one
Most of the students I tutor have said similar things
Obviously it's different when they're just doing textbook exercises (under no time constraint)
when I took algebra, I didn't check answers because it was extra work
now I don't check answers because I trust myself enough with my ability and im paranoid ill change my correct answer to an incorrect one; now, if I was struggling on a question I will check it but for the most part I don't
Yeah, the less confident I am with an answer the more willing I am to check my answer
but yeah I tend to lose a few points on exams for a dumb mistake so idk
Do those mistakes really bother you though?
not really
I get annoyed, but I realise that I don't care too much since I "know" the answers
I just don't pay attention sometimes
yeah
I think the problem is more that: Students don't have an accurate gauge of when they should check their answers and when they don't need to
if I don't get a 5 on the ap calc exam im blaming my lack of attention
eh maybe idk
So maybe teaching people to recognise a lack of confidence in an answer
how would you do that
Cringe, kinda-impractial, proto-solution:
have students rate each of their answers on a likert scale for their confidence
Then they get feedback on that
eh maybe
On difficult exams in undergrad I didn't have enough time to check a solution. Professors seemed to design exams to take the full time and most were pressed for time. I have made the mistake of having exams go too long.
In general based on how long you take to finish an exam how much time do you add for your students? Like if you can finish your exam showing full work in 10 minutes how long do you expect your students to take?
is there any pedagogical value in having students explicitly verify that a particular map is linear, over and over again?
(talking about linalg specifically)
This will be relevant to me in a few weeks, but I think the answer to your question is no!
Exception is if you were able to come up with a large variety of presentations of linear maps; once per variety is okay
i mean yeah just
yknow
like it pays to see the various ways linear maps can look like but ive seen people come here with like 10 exercises that are all the same just with different numbers and are like "show that this map is linear" etc
does anybody else have the problem where you can prove something, but its hard to zoom out to really get the essence of what it is u are proving?
if so, how do u get around it?
Straight line graphs using function machines. An idea I had. Seems kind of obvious but it emphasises the fact that the equation of a line maps an x coordinate to a y coordinate
practice and reflection
Find an alternative interpretation of the steps in the proof. For example, a lot of the important basic proofs in real analysis can be written as dry arithmetic symbol-pushing with inequalities, but basically every one one can be interpreted geometrically
Also getting used to definitions and negations of definitions, how some things are characterized usually and then also alternative characterizations of those same things
Basically the more you look at something from different angles the more familiar you are with it
Even the symbol-pushing has a certain beauty to it sometimes
Sorry if this is the wrong place, but how do you balance TA workload with your own stuff đ
Could you describe your personal issues with it? Could be a lot of things
Ie your prof is overworking you vs you are overworking yourself
what do u mean by reflection?
i see, but how do i switch angles?
it can be hard to do that, but sometimes i do a problem and the next day i have a completely different way of looking at it
that's good! yeah time off def helps, at least for me
Everyone has a mental toolkit for looking at some concept in some context, it just depends on how you develop that toolbox
A very experienced research mathematician could probably interpret a simple statement in dozens of ways relating deeply to various contexts
Meanwhile for a fresh student in that subject, it might be the first time they see that subject, so their toolbox only has general non-specific problem solving skills
i see so its just a matter of exploring and trying things
and learning more content of course
I would agree with that
but I would emphasize again for proofs specifically: alternative characterizations, knowing one's way around definitions, and relating what you see on paper with something more vivid
do u think being taught the subjects formally (or taught by another person) also helps?
i see, thanks
There are a lot of reasons it can be a good thing sure!
especially for things like analysis
so hopefully i will get better at this over time and i can grow my skills for problem solving and mathematical thinking more in college as well
thanks
Thinking about your past problems and work
you will for sure!!!
i think i do a good amount of that now, i just need to approach it from different angles as zd said
thanks
I think its actually important as a teacher to actively show this to students. I love having students come to the board to do problems in different ways. I think at the secondary level at least students come into high school thinking math is doing something in this rigid way. I think its really important to encourage multiple ways of approaching a problem for students
lol itd be great if we had problem solving in school
this is one of the points that many people here argue toward, yeah
taking a different approach to math teaching that values problem solving skills and abstract thinking, instead of procedure grinding
the matter of restructuring curricula and availability of (human) resources is unfortunately highly political and difficult, as well as ethical when considering new structures have to be somehow "tested" on students
this is met more positively in undergrad+, where there is more flexibility in teaching, but very challenging before that
Itâs be great if whatever is being used to âtestâ new structures on students was a good test of general mathematical ability rather than specific procedures
One of the younger students I've been tutoring (they're in sixth grade) seems to be struggling with keeping a track of important definitions. For instance, despite repeating the definition of prime numbers throughout my interaction, elaborating it with examples over and over, they still seem to have difficulty in recalling it correctly, affecting their ability to apply it properly in the context of problems. I'd like to know if there are any measures I can take to make them more comfortable with the definitions/ideas they have been explained already, other than just plain repetition and practice.
tl;dr how to make younger students comfortable with precise definitions in math?
it might be a lack of intrinsic motivation, or maybe they are struggling to really understand the definitions? do they seem responsive if you ask them questions about the definitions?
They often sound hesitant and confused
I'm not sure if I can pin down the problem precisely
all right. that is probably it, the struggling to grasp the concept, but that alone shouldn't be a problem. they might have a negative learning environment at school where this difficulty in understanding gets them chastised in some sense (grades, reprimand, etc.). maybe you can start by getting them more comfortable with making mistakes during your study sessions and they'll stop being so hesitant, even when making mistakes
That's a good suggestion, I'll keep that in mind. Also, they've been in the online-school environment for 2 years now, and I'm tempted to think this has scarred the learning experience for many.
aha
But yeah, I'll keep in mind to bring them at ease. Thanks Edd! 
you bring up a good point because multiplication and division are practiced extensively in 3~5th grade, i think? so the online experience might have left them lacking in the understanding and overall confidence doing these operations
so prime numbers would certainly be challenging
Exactly
They actually seem to have some difficulty with basic arithmetic
Like, in calculating correctly. They'll often trip and say things like "13 times 5 is 165"
I started teaching fractions to them and it was going fine, till we got to the point where we had to compare fractions
Now I had to explain the idea of considering a common denominator for fractions, but turns out they were completely oblivious to the idea of factorisation, etc.
So I had to move back several units in their curriculum
And hit this new roadblock of failing to get definitions across
This further reinforced why so many students end up disliking math. There is no active supervision to check if they're thorough with the background topics before moving on.
So many students will just finish their mandatory math education and probably not even learn how to add fractions properly, even less why they're added the way they are.
mhm, i see. also do keep in mind these are things the average adult also struggles with đ if you grab a random person on the street and have them compare fractions,
. the "weird operations" don't seem to ever have a physical meaning. the goal ultimately is to reach some level of abstraction, but since numeracy is involved, maybe considering practical scenarios helps. idk, putting apples into boxes
Cakes were my go-to example for fractions 
I understand though, I also need to develop a more realistic outlook for sixth graders who haven't received the best education over the last couple of years.
yeah, this is a very challenging situation. depending on how invested you are, you could spend a session talking with the student about how they feel about their math, or even asking the parents about it
since the whole deal also has an effect on mental well-being
very rough :x
I should be able to talk to them, if not their parents. I've been put in touch with them through a non-profit organisation that I'm volunteering for, so I've had to interact with them directly so far.
I can relate to the original situation about the definition of primes not sticking if I pretend that instead of trying to remember what a prime number is, I'm trying to remember what, say, a Lagrangian subspace is
Without some ideas about what's important about the background stuff, i.e. symplectic vector spaces, the idea of Lagrangian subspaces would seem pretty arbitrary and it's harder to remember
This is true, but in this case the discussion for primes and composite numbers was preceded by the idea of factors/divisors of a number. The student seemed to be fairly comfortable with that bit, but somehow the leap to classifying as prime/composite didn't go as smoothly.
What definition(s) of prime did you work with
The state textbook goes with "has exactly two factors"
I've tried phrasing that in one or the other way
That's a pretty steep "why do I care" curve
The "why do I care" element affects memory too
Can they say what the fundamental theorem of arithmetic says?
I don't think so
Hmmm, that might explain a lot of it
i struggle to come up with any "down to earth" applications of primes for this school level of the top of my head, though. especially for a student in this situation
i don't think providing abstract motivation here will be very helpful
Real world applications of primes is not a route you want to go to, yes. Don't really think that will help. Properly done abstract motivation is the way to go here
Some ideas: Demonstrate Sieve of Eratosthenes, demonstrate arranging numbers into boxes, demonstrate complete factorization of some numbers "until you can't do any more factoring"
i just don't know that that can be done at a pace where they will catch up with the curriculum, which sadly must also be considered. since this is a student struggling with many basic arithmetic concepts, like comparing fractions, this will require a lot of backtracking and filling in a lot of gaps. i do agree that ultimately this is ideal, but i don't know if at present it is practical
The abstract motivation here can be as simple as: "As you can see, numbers like 12 can be written as 3 times 4 -- a product of two smaller numbers. Can every number be written as a product of two smaller numbers?"
As an aside, here's my re-imagining of a short and effective comparing fractions lesson
Act I: Which is bigger, 4/7 or 3/5?
Act II: Showing 4/7 and 3/5 precisely on a number line using computer software. Students will be convinced 3/5 is bigger
Act III: Ask students how they could have worked out on paper that 3/5 was bigger. Suggest to them to look at the space between 4/7 and 3/5 on the number line and how small it is. How small is the space? (1/15, which is very small indeed)
Acts I and II set up the abstract motivation which I believe is very important and people don't do it enough justice. Without abstract motivation the thing itself risks being seen as a skill to pass a test. In my experience, this doesn't change even when real life motivation is used to introduce the subject
Ok rereading the context, @molten urchin It seems that comparing fractions is the larger goal here. The student seems to be lacking the motivation for the common denominator method, is that right? Did the subject of factorizations come up because the method was to find the least common denominator? The "idea" of common denominators doesn't require finding the lcm, just multiplying the two denominators is enough. Finding lcm is just a way to get a more reduced fraction with less work
Sieve of Eratosthenes was demonstrated but I'm not sure if it helped much. Again, "why do we care" kicks in.
That's completely correct
But I guess I also wanted to use this opportunity to fill gaping holes in their understanding of a rather important topic
Another thing I've noticed is a frequent reluctance to "take action": I often prompt them to answer a question, or explain why they think something should be the answer and I'm hit back with a "I don't know" rather quickly.
I think I was able to get the essence of this across although I didn't emphasise number line as much, admittedly
Act III: Ask students how they could have worked out on paper that 3/5 was bigger. Suggest to them to look at the space between 4/7 and 3/5 on the number line and how small it is. How small is the space? (1/15, which is very small indeed)
not 1/35? :p

icy needs to take manan's tutoring too đ
ah btw icy, i'll DM you about something really quick, if that's ok
đŽ I enabled direct messages then
that was all, feel free to disable them again đ
"Has exactly two factors" sounds like a pretty horrible way to introduce the concept of primes to children. It may be the most succinct way to avoid 1 being a prime, but that's about the only thing it has going for it. Just saying "a number that's not the product of any two smaller numbers, except that 1 doesn't count as a prime anyway" would feel less like it's being pulled out of a hat for no interesting reason.
what's a good way to prove the binomial theorem combinatorically with lemmas
You can phrase it as a counting problem in the expononents, i.e., given the expansion how many ways can I make a term x^ky^n or whatever
if you're teaching a topic, how much beyond that topic do you need to understand to be able to teach it well?
like, would someone whose teaching Calc 1 need to be comfortable with analysis to teach it well?
not necessarily
for me, teaching what im learning is a great way for me to learn
I make youtube videos on things im learning about
it helps enforce the ideas for me
Do you have a youtube channel?
yea
Dam
I'd suggest some familiarity with analysis can help shed light
And give an overview of what's going on, but it's not required to teach the calculus sequence
I just proved the mean value theorem for a second time for my students
I think it clicked more this time
that you can take a difference function, and that difference function will have a minima or maxima
I'd say learn enough (not necessarily analysis) so you can equip students with the purpose and/or history and/or larger abstract context of every day's lesson/lecture and not just "This is what we're learning today, practice it for the test"
I agree with this statement ~ students can tell when you're just doing formulas or if you know where it all comes from and can put it together
Which is by no means an easy task for a subject as intricate as Calculus
There's a lot of moving parts and pieces that interlock in unexpected ways
It's a beautiful subject, literally changed human history
exactly, it can help a lot but is not required
I feel these two ideas go hand in hand. I did emphasise the latter just as much as the former, but so far I've had limited luck in getting the idea across.
my little sister was taught that 1 is a prime by her school, and i couldn't think of a better way of explaining it than straight up introducing the idea of units
it's not too difficult to explain
if you only say that if 1/x is still a whole number, then x is a unit
Has exactly two unique positive integer factors, wouldn't this definition solve the problem while still being concise?
1 fails to meet this definition since while it has two positive integer factors they aren't unique
I edited in the positive integer part since while it's implicit when we talk about factors it might nevertheless open up the whole can of worms of "but -2 times -1 = 2"
The problem isn't to make the definition precise, but to get through why one would even care.
That's usually why you follow up with questions like "is one a prime?" "What about zero?"
Tbh asking kids the question of whether it makes sense to have a factor of 0 can give interesting discussions
Even negative numbers can be an interesting discussion. When you relax the restriction that positive factors are needed it turns out you won't have 2 unique factors anyway for something like -2
None of that feels like it will make the definition feel less completely random and arbitrarily pulled out of a hat.
Maybe you can link it to cryptography?
Algorithms are based on prime numbers because the fact that there are only two unique factors means that it's harder to brute force
Which problem are you trying to solve here?
You want prime numbers to have a meaning right?
I mean at the end of the day it's just a set of numbers generated from a definition. You could say the same thing about square numbers why do we care about numbers multiplied by themselves
I want prime numbers to be explained to children so they agree it's a cool and natural concept that it makes sense to care about.
To start with the "exactly two factors" definition hides the cool things you can use primes for, and as far as I can see with the sole purpose of avoiding the need to explain why 1 is excluded later on. You won't need to explain it because kids who are told this-is-the-definition-because-I-say-it-is won't care about whether 1 is a prime in the first place.
Instead, just start with "a number that you can't get to by multiplying smaller numbers together" already.
Don't worry overly about whether 1 is prime or not until you're at a point where you can talk about prime factorizations and the fact that they're unique, which is when we get a motivation for treating 1 as a special case.
Another motivation that just occurred to me is that multiplication by 1 is the same as doing nothing, and we agree that ânothingâ does not count as a building block of a system
Right.
I think the "building block" language goes naturally together with the idea of prime factorization.
I suppose my point depends on just how early children are to be taught about to prime numbers. You can speak about primes in and of themselves while only mentioning quite small numbers -- I don't think it should be done that early, though.
If it's postponed until the kids are comfortable with three-digit division, one can show a convincing amount of examples of prime factorizations being independent of the order one discovers the prime factors in, and then it makes sense to talk about the subtlety of 1 simultaneously. Then it could even make sense also to discuss the "exactly two factors" concept and make a teachable moment out of "definitions are something we choose for reasons", if the kids are not struggling too much to be ready to appreciate that.
There is a weird consequence of this where like, mathematicians know that 1 is not prime because calling one prime is not useful
whereas when you just assert this
people think there is like, some deeper meaning
idk how to explain it but this sort of thing comes up a lot
it's similar to those horrible PEMDAS questions on facebooks where people think that mathematics is about enigmatic and poorly written order-of-operations questions
maybe its like, "1 is not prime is a Truth of the universe" vs what is actually true, "1 being prime would make some theorems more annoying to state"
Basically the other side of this coin, I guess
I think if Z^+ was the only thing we thought about factorization in we would call 1 prime but it would be a weird prime. It's certainly not composite, and inventing a whole new bucket to put it in seems a bit silly. But as soon as you think instead about Z[i] you realize the thing 1 is shows up in a lot of places and although you can skirt it in the case of Z^+ you will never avoid it in general. But it is somewhat unsatisfying to tell people that the reason this number that is obviously prime isn't prime is something they'll learn about in grad school is quite unsatisfying. My standby answer that sounds less condescending is that "The fundamental theorem of arithmetic becomes especially tedious to state if 1 is prime."
+1
One way to make it clear that 1 isn't a prime would be to draw the divisibility lattice for the natural numbers
Then draw a circle around the primes, and define them as the numbers on the second layer
I think that makes it clear why 1 doesn't belong with them
I am not sure this makes sense
It is clear that 1 is distinct (initial)
but it isn't any less arbitrary than the other defns
in fact the same argument could be used to say 1 is the most prime number lol
I don't think one wants to draw divisibility lattices (with infinite fanouts and dotdotdots going off in all directions!) at the point in elementary school where prime numbers are first introduced, anyway.
Excuse me, my sister is struggling with her homework... she is trying to solve one step problems involving fractions and apparently I am bad at explaining it... is anyone here a teacher that can help? (Don't worry I am old enough to be here, I have a young sister)
can you provide an example of a problem
$x + \frac{2}{3} = \frac{9}{10}$
$x + \frac{2}{3} = \frac{9}{10}$
First ask if she has a crystal clear understanding of what the goal of these problems is
She seems too
She can solve other problems that don't involve fractions
Does she get to 9/10 - 2/3?
I just asked her and she said she didn't need to do it
That sounds like she has an opinion about what she does need to do?
Not sure she understands
Well, what is the explanation of yours that doesn't work? We're pretty much guessing in the dark here.
being able to solve problems may not be strong evidence of understanding what they're doing and why
I tried to show her common denominators, she was not happy
So basically, the goal she needs to understand is to "find the number which when added to 2/3 yields 9/10"
Needs to be those exact words or close
I think so
Does she know by instinct how to prove a number isn't a solution, by demonstrating that it doesn't give 9/10 when added to 2/3
I don't think so
Try getting her to the point she can instinctively do that
Sorry about the ambiguity
Okay
It seems unclear so far whether she is comfortable with adding fractions in the first place.
yes.
Yes to it's unclear, or yes she's comfortable?
yes I am not sure she is comfortable
Wait, she came up, (I came upstairs to talk to you all) and she appears to be done with her homework.
I think my mom helped her
Thanks for your support and help!
I am doing transformations with my freshman and can come up with interesting problems using reflection. Like typical problems involving shortest path and using Pythagorean theorem or bouncing balls on billard table etc. Anyone have interesting ways to use rotation or translation in ways to solve harder problems easier? I can make interesting problems using dilation and reflection but unsure how to show how the other transformations can help us solve difficult problems.
My students seem to enjoy seeing techniques we learn applied to non typical problems. I think this is helping them to really see the value of the techniques. Pythagorean theorem is a great one because it can show up in so many ways. If anyone has some fun problems on transformations or ideas for this topic I am interested to hear.
The curriculum is quite dull just moving shapes a bunch of ways so trying to get my students to see the value of these techniques. We just finished systems which has so many immediate application that it wasn't difficult to get them to want to learn it
that's amazing that you're engaging your students with interesting and applicable problems, props to you
what kinds of questions for example? im curious
also are these college freshman? if so, what course?
"I own a cabin in the woods thats 4 miles directly north of a river that run east-west. I am currently out exploring in the woods. I am 2 miles north of the river and 3 miles west and 2 miles south of my cabin. I want to walk to the river then to my cabin. What is the length of the shortest path I can take? " The idea is shortest path is a straight line and you can use reflection to do that and build a right triangle. Also some with out calculations playing billiards or minatiure golf and where should you hit the ball etc. Simple solving and its for HS freshman.
I have learned students respond better to things that might be harder rather then simple drill problems.
oh alright that's awesome
that question is super interesting too
better than a stupid typical word problem
Yeah I like word problems that require drawing it out and it leads to what to do
Rather then just words for the sake of it
yeah exactly
What do you mean you can't make everything relevant by smearing some words out around it?
William wants to sell his bicycle. The price William is willing to accept can be described by a differential equation of the following form: ...
Lol exactly
Somehow physics classes have figured this out but its still a problem with math at least at the secondary level. I was always impressed with my physics class that problems would often become trivial with a good picture. I think this should be encouraged at a younger age.
When I tutor 1-on-1, I find the most success in just going through their homework for the week, or past papers. And then fill in any gaps they have for questions involved. Is this normal?
And if I try to set them questions to do for the next session, they almost never bother.
it's common because the main motivation in many education systems is simply getting a good/passing grade
Mm. Makes sense. In fact, I usually have the opposite to this:
I have learned students respond better to things that might be harder rather then simple drill problems.
Like, they just want the methods to past the exams. Preferably drilled into them within the same hour session, so they need no revision.
it's really a person by person thing, but yeah, this approach is reinforced heavily by the standard teaching and grading approaches. and sadly, as a tutor, you are also expected to help the student survive through this
I have an idea for getting my students to engage more with the content of the course. (Essentially it is college algebra and a little bit of precal and linear algebra)
I give weekly quizzes.
I was thinking about giving weekly "challenge questions" which would be entire conceptual. Essentially, I would take the material taught that week, and ask "why" about various things. For example, this week I taught how to test if a given equation is a circle, and the conclusion was that after putting in center-radius form, if r^2 is negative, it isn't a circle. So a challenge problem would be "Why is it not a circle? Could we represent it is a circle in the complex plane? What would be the challenges in doing so? What if r^2=0?"
I would offer them half of the points they missed back on their quiz if they give a cogent response which appears to have been well thought out.
My high-school teacher did this sort of thing, but I never experienced this in undergrad. Is there a reason? Has anyone tried this in undergrad before?
Background: most of my students are freshmen
It'll most likely work ~ I've had profs give a quiz every class
That works like magic to get students engaged
often times this level of regrading is a burden on the course grader who normally has other responsibilities (ie is a grad student or undergrad)
but its a great idea if you can pull it off
I think a lot of college stuff is a compromise between peoples various time commitments
Fortunately, this semester, I am teaching the same course I did last semester, so I can just reuse the material from last time. So I have relatively more time. I like this take though, I find it true in my experience as well
I give an assessment every other week just because grading can be time consuming. If you can pull it off and give good feedback you will keep your students on their toes and get more data on how they are doing.
I always put a challenge question on my hws and tests fully expecting only a few to do them. It makes a big difference for your higher students who want to be pushed and are bored with the regular material.
Do you encourage everyone to attempt the challenge questions? There will be good data from thatâ not expecting everyone to solve it of course, but everyone should be able to make some progress and write reasonable things on their paper. Most importantly, if anyone writes nonsense/false statements and doesnât make any progress or know what theyâre writing, you can see the red flag
Oh yeah definitely I give credit for any attempt. It's not a way to crush a students grade at all. What is surprising is many times a student I don't expect to make much progress on it will. They might not use the most efficient method but they are developing persistence in solving problems which is actually a state standard.
I find most classes have a small minority who are really low or really high but that middle group can be pushed to the higher end by giving more challenging work. So trying to cater to the lowest students hurts that middle group more. It might not be perfect but those that choose to engage are getting more out of the class when you don't baby them or assume they are not capable of a certain level.
does anyone else hate the term "simultaneous equations"
and how it is very prone to being put in the singular despite that not making any sense
what is your beef with the term? the latter point, absolutely, though i don't know if that's a language problem instead
reminds me of a calculus book which had a section on "diverse substitutions", which had a handful of different miscellaneous cool substitutions. upon using these, some students would justify their procedure as it being a "diverse substitution"
Recent posts in #geometry-and-trigonometry sound like some people are using the term "simultaneous equations" to mean that the equations in question are linear.
hmmm
i agree it's funny, but rather than make fun of them, the point was to highlight the disconnection between the actual meaning of terms and just seeing them occur together often and assuming that is what they mean
not only that but also to imply there's only two
but also just like
that's certainly not good
"simultaneous equations" feels much less like a thing-in-itself than "a system of equations"
i do think they refer to the same thing. for whatever reason, "system" appears to be preferred over "set of simult." in grad school
yes they do refer to the same thing
but "system" is easier to like
conceptualize as one object
if that makes sense
i can see that
this is circumvented by adding in "set of" in front of the simultaneous equations, but at that point it's wordy. but yeah, gives more intuition on it being a collective thing
Simultaneous equations usually refers to a pair of equations, while a system of equations is more general
I wonder why Gauss-Jordan elimination isn't taught earlier on? You could introduce systems of equations this way
I do show the method to my freshman but honestly most don't respond well to it which is surprising. I think because they are taught substitution method so early that they tend to want to go to that even when it can make the problem harder. I find in general breaking bad habits is much harder then teaching something they have no prior knowledge of.
At the freshman level I am just happy if they can conceptually understand what a solution to a system means then ideally to take a real life context and use systems to solve it. I finished my systems unit with linear programming and my students really enjoyed the idea that we could use systems to maximize/minimize an objective function in various contexts.
The reason is them not being strong enough to evaluate methods (reasoning) and decide on the most efficient approach (fluency)
There are some cases where substitution can be efficient, depending on how it's structured. Generally Gauss-Jordan is better as an algorithm
I'm grading an assignment and notice 2 assignments have extremely similar or identical wording on most of the assignment. It's a HW that students are allowed to work together on, is this a red flag or nah?
The 2 assignments actually diverge towards the end, but the 1st 2 out of 4 problems seem about identical
My main concern is if 1 student straight up copied or if they just did the assignment together
I think there is no harm in mentioning what you noticed to the student to ensure they understand and are not just copying before they get to an exam and bomb it.
If students are encouraged to work together your going to see similar arguments I would imagine.
Sounds good, I'll at least leave a not on the assignments then
For the future, if you want to encourage group work it might be best to tell them that they have to form a group explicitly and write the members of that group on the assignment. If you see two different groups with similar work you know they copied
If you want to see individual efforts within a group it might be good to explicitly mark some questions as individual tasks that need to be split up. It doesn't rule out them colluding on that one question but it does discourage them if only one person gets credit for it
am i allowed to ask for opinions on how i should grade a students hw?
obv wont disclose anything about student i just
ok it's borderline illegible, how harsh do yall punish when you have to make like an effort to even see their answer
prof said to be lenient but i cant even tell if they submitted the right thing so my opinion is to give 0 for the question
Yeah I'd say just grade what you can make out. If that's nothing, it's a 0
does sending a picture of their submission violate anything or can i
that was actually how it was taught here. although it wasn't taught like that. we were taught we could either substitute or eliminate a variable. which is just reducing to triangular and then back substituting, but didn't seem that way at the time.
It might violate fafsa

Ferpa**
If it was my student I would give them a chance to explain it to me in office hours. I have had students scribble nonsense then magically write the correct solution on a test question because they likely got the final answer from a friend in a class before. I don't give credit in this situation.
not legible => instant zero
professor said to ~be nice~ so i just gave warnings
go against the professor and zero the entire assignment with the comment "LaTeX this shit next time" 
it's CS students :/
well im grading a math class but it's a linear algebra class that CS students have to take so they can say "i did linear algebra"
Happens quite often at my old university. I was always told to give highest I could.
CS students ought to know TeX too. (Not that I'm champoining Ann's position, though).
same :/
these definitely do not know TeX
i took the class by accident two years ago when i was still a pretty ignorant math major, unless you take math major classes here youre never gonna see TeX
i'm not even presenting a position
well
not MY position
that's not a position i hold unironically, as signified by the
at the end
Hmm, CS undergraduates might be excused for not having seen any TeX...
I introduced latex to my honors linear algebra students and as far as I know, none of them had seen it before. I even typed 4 proofs in real time on overleaf in class. All but 2 students were interested by it and are writing their math homework in latex
This seems unfair especially on times exams, graders should always try to figure out what students have done
Grading should never be viewed as a âhow do you punishâ situation
Like you should make every effort to give students every possible point imo
That said if you really canât read it you really canât read it
Epic win
I disagree. Sure you shouldn't be a dick about it but I still stand by you can only grade what you can make out. If you have to spend 10 minutes deciphering something you should probably move on
I can't say I have ever come across work that was decipherable after 10 minutes but not three
like either its actually impossible or it just takes some small amount of effort in 99% of cases
in my case i was asking cuz the person submitted pictures of their work in such a way that i could only see the very top of their work and the very bottom
i couldn't find any conclusion and the work in the picture was minimal so i gave .5/2 points
sometimes i have to force myself to be nice tho, not bc theyre CS students but bc theyre students
idk why but sometimes i find myself defaulting to harsh grading even though i wouldnt wish it upon myself
that is a good thing to know about yourself and avoid
Being a lenient grader is also like
objectively easier lol
so everyone wins
yeah i literally give myself more work lol
what i do now is before i finish grading i usually consult with other graders and change my scaling if they think im being too harsh
or just friends who've taken the class, i have a biased pov from doing well in it
I normally decide on my rubric before i start and try to craft it to be generous
in particular I normally try to think about counting up, rather than subtracting down
hmm i hadnt thought about that
and I only every take away like 1 point for minor algebra errors or anything irrelevant to the material
like i grade calc
if students fuck up their algebra but get the integral right
as far as i am concerned they learned the relevant material
so i will only remove some small amount of credit
something i realized too that might be problematic(?) is that if a lot of people make the same mistake i take less points off for it
idk do you do that too
im grading online submissions so it's not as hard
Oh 300 is the number that I grade lol
there are 1000 students
But I only grade part of the exams
so normally ~300 problems
bro your profs 
i mean they dont do that much work really
that much more work
they give the same number of lectures and write the same number of exams
ig that's true
and they use piazza for questions instead of emails, which the TAs do more work for
but they probably have a lot of admin BS
i wish my math classes used piazza
been tryna advocate for it but no luck
at least the big ones like calc
i prefer discord
but piazza is good
piazza has the benefit of having fewer repeat questions
discord has the benefit of not being garbage
i mean yeah but a surprising amount of people are unwilling to learn discord UI 
i was in a class that used discord and only like 3 people really used it
that's my experience at least but in general i agree
it can be daunting at first with all the options and how large a server can get, took me a while to get used to it
discord isn't too hard to understand
if it's just for a class
imo
it would be fun to be in a class that uses discord
Wow and I thought us secondary teachers had it bad with grading. I couldn't imagine sitting down to grade 300 tests. A 110 already feels like too much. I would just give multiple choice tests if I had a 1000 kids grading a real test would take all semester.
At my high school the advanced math teachers have had good response with getting students on discord to help each other.
At my high school the advanced math teachers have had good response with getting students on discord to help each other.
damn that's awesome, are these younger teachers?
Well somewhat 10 years in but relatively young. It seems a good way to reduce your workload as generally if a student has a question some other student will help out. It helps with commuinity building as most of the advanced kids will be in the same classes.
I might try it nest year with AP stats if I get the class as the teacher is retiring and said I could get it.
oh yeah that sounds awesome
does anyone else think we should teach kids to write sin(x) always with parentheses, and never sin x
There's people that don't?
I don't write the parentheses with trig functions or logarithms unless it's something other than one variable or number
but I do understand how it could be confusing
personally if I am multiplying by something, I will put it in front of the function, or any function for that matter
for me it is always bsinx but never sinxb
or bf(x) but never f(x)b
the only time i don't write parentheses is if the argument of sin or log or whatever is enclosed in absolute value bars
I think students should just be taught good judgement about when their notation could cause confusion
like teaching notational "rules" is often misleading imo
it makes students think that PEMDAS is like, the Truth of mathematics rather than a notationally useful tool
I agree with Max here, there's no hard rule for how to write something that conveys information
The only issue is when it becomes ambiguous
I currently have some 6th graders that are trying to make "their own" notation
And it's horrendously ambiguous and confusing
what about the point before they have developed said good judgment
You donât teach good judgement by prescribing the rules for them
You can explain why you think sin(x) is better notation
But it should be explained from the POV that all that matters is clear communication
lmao like what for example?
Oh when solving a system of two equations with two unknowns
like x + y = 100
5x + 3y = 300
they'll solve
5(x+y=100) + 3y = 300
@earnest trail
Instead of writing x = 100 - then plugging that in
He says "but it makes sense to me"
and I say "Yeah but that doesn't make sense to me"
exactly
seems like a creative little fucker but the creativity is being used in the wrong way
he's just đ -ing respect the drip đŠ
or traversing an operation tree
that involves substitution
It makes some sense if you expect that mathematical symbolism works like English.
"Five times x (which by the way makes a hundred when you add y to it) plus three times y is three hundred."
Which I suppose is an easy mistake to make if the first symbolic expressions you see are so simple that they do make sense as word-for-word renderings of English, and the teacher never bothers to explain how mathematics actually works on rather different principles.
Why is Stewart considered the gold standard for calculus?
In the US so much time is spent preparing for calculus and teaching from Stewart but it seems like a waste of time unless you are in a gifted program or AP out.
Why not introduce profs early and often and then all undergrads could start with advanced calculus and linear algebra first year.
That would require a lot of change tho.
Because to introduce proofs early you have to hold students to standards
and have to teach the teachers the material
Both of which will cost a lot of money for no real gains
I'm pretty sure Britian did it this way but recently changed to follow the US system.
As to why Stewart is the default, it's because it doesn't require you to think that hard
It's just a plug & chugg book
No real gain?
Yes, are you familiar at all with how schools are funded, what "success" metrics are, and how they optimize for them?
If you're familiar with that, then you will realize according to these standards, that intro to proofs earlier for everyone will amount to no real gain in education
Plug & chug doesn't teach you how to think but I guess education isn't supposed to do that anymore.
Anymore?
As far as economic output I think we'd be better.
How would teaching kids to prove geometry theorems improve economic output
Let's say I grant you $1 Trillion to revamp the education system in the US. What is the best way to go ab
teaching them how to write, argue, think and do research
about that in a cost effective way
There's no reason why quantifiers shouldn't be taught right along inequalities.
And you build from there.
Have you spoken to your average HS math teacher?
It's not so easy to run a classroom or a school
Let alone change curriculum across the country
If students are already disillusioned with math
How will introducing quantifiers magically make them like math
Because it makes more sense for you?
Becuase it's less of push these symbols around and follow these algorithms which you will never be better than a computer at and more of developing ones thinking.
That's the issue though: once you make the standard "develop one's thinking"
You have to have a rubric that says this is what you mean by "thinking"
I never said get rid of all computation either, but sticking with hey class do 1-29 odd and if you need to do more do the evens.
Isn't helping your case either.
And if you make it difficult, or introduce abstraction then there will be more students failing
Which means less funding
So your left with a population that's less educated and those who have the capability be held back. Makes sense.
In order to fix the system you have to rework the financial rewards that schools get for lousy teaching
I never said what we currently have makes sense
I'm saying your changes are ultimately futile
Because they've been tried & tried again
Just look at the history of math curriculum over the past 100 years
Especially new math in the 60s-70s
The change in curriculum isn't going to do much
It never has
If you want to truly change how math education is run, you have to change the way that schools are funded
And rework the incentives that schools have
Then give local control to teachers on curriculum that they teach with some state oversight
Or let people specialize early on if they choose.
That can easily backfire hard
I'd rather late specialization with flexibility, than early specialization
You can already specialize early if you choose by picking electives
What if we deleted the stuff that doesnât make sense without adding anything, just giving teachers freedom to do what they want to replace the deleted material
Couldnât make math education worse?
I think that's probably the best way to move forward at this point Icy
Giving more control back to teachers, students, & parents
And away from state bureaucrats
But the issue that arises is what do your grades mean? What does your education mean? How do colleges evaluate that?
etc.
But I think that's more of a minor issue than what we currently have
Since grades from region to region, school to school, and class to class are pretty non-uniform
If you choose to specalize late you will have a harder time catching up.
Catching up to whom?
The problem with specialization earlier in school is that it "boxes you in"
And there's little room for felxibility
Your European peers.
You should read about the origin of the US college major
And why it was designed the way it was
Europe's in shambles anyway, so it's whatever
The french university system along with the italian system
Are not so great
The UK and Germany got their shit together
(If the UK counts)
I'm ignorant of all the other systems within the EU
But I can also tell you that East Asian universities aren't much better
The US dominates higher ed because of our flexibility and the fact that professors are held accountable by their students & administration
But professors still have a lot of freedom in their curriculum, they just can't make arbitrary grading schemes
Also, for a long time the US has dominated pre-k thru 5th grade
Education in most categories
It's starting in middle school thru HS that the US education system floudners hard
Those grades are also getting the most attention in education research
Exactly
Pre-K to 5th grade
I think it's a combination of things: too many teachers (each student having 7 teachers is not a great way to educate kids)
Puberty, dumbing down of the curriculum
State control, etc.
I think US graduates are getting outclassed by their European counterparts.
From university?
From HS, sure I can agree with that ~ but the US is dominating higher ed
We have so many international students
Yes, I talk to a lot of US math majors doing masters/phd in statistics and they simply haven't taken enough math and the uni they attend won't catch them up.
Now is it like that in every graduate program, I don't know.
mismanaged prerequisites?
That's department to department
But just the fact that we have so many systems
Like in California the CC system, CSU, and UC + world class privates
So if you could specialize early that wouldn't be an issue.
Just the amount of pipelines and the ways in which you can go through the higher ed in CA alone
Is astounding
So do we keep all these systems or try to unify them?
You want to unify the CC, CSU, and UC system along with privates?
Abstraction like computation isn't daunting when you build up to it. And I'm arguing if done at an early age it would be better for the development of the pupil.
I'm not arguing against that
I'm arguing against "let's make that national curriculum mandated"
Is there any well-known readings (papers, books, etc) available regarding encoding and pre-study for undergraduate maths?
The only math programs I have been impressed at the elementary level are those that are willing to present difficult problems to students.
My daughter just did the online math contest through RSM and I was really impressed with the old test questions and my daughter enjoyed working on them despite the challenge. She is now prepping for the math kangaroo test and again enjoys working on difficult problems because they are not boring.
I have noticed my own students respond better to interesting problems even if they might be harder. I think we underestimate how curious kids can be and force them to do mind numbing tasks hurting their growth and interest in math early.
Its much harder to get a kid interested in math once they have convinced themselves its not for them. Young kids don't have this prejudice yet so they should be encouraged to tackle weird problems sinilar to math circles or elementary school math contests.
Its easy to teach a kid who is interested. Its easier for a kid to be interested when they work on interesting problems. I don't know why so many curriculums don't offer any problems worth doing. The math circles have shown me you can have interesting problems at any age. Math is full of rich problems its a shame they are not highlighted more
RSM is great ~ from an RSM teacher
What are some useful/effective things you have told students or peers that empowered them or made them realize they are capable of verifying their solutions on their own?
Of course looking for a second eye in case of mistakes can be nice, but feeling paranoid that you are not capable of independently producing coherent results seems to be a common ailment
I think it's hard if the person has never tried anything independent or creative wrt math stuff, because then their only image of what math is is "something done to you" rather than something you do
So it's only natural that the thought "I'm not capable of checking my own work" would be prominent
You can start by listing things you know the answer has to satisfy
An example might be like
If I ask what 3626 times 8698 is
And you give me a prime number
Or if your antiderivative differentiates to the wrong thing
Was this about my question? Just curious đ§
Like telling a student "list things you know the answer has to satisfy"?
I think so. A student saying "Is my answer right?" while it blatantly doesn't satisfy the constraints is pretty frustrating
Yes
Students can âSanity checkâ their work
By checking whether they satisfy things they have to
This can be as simple as plugging an answer back in
Check the results in the original problem. Interpret the solution in terms of the original problem. Determine if there is another method of finding the solution. If possible determine other related or more general problems which the techniques will work.
Does this look reasonable difficulty-wise for a first-time undergrad abstract algebra course?
Sorta more like a take-home exam I guess? It's a Problem Set.
I give weekly "Checkups" that are more like quizzes, and they're more focused on computations and examples/nonexamples and explanations. For Problem Sets I make them more proof-based.
This is my first time actually teaching Abstract Algebra so ... I'm learning to calibrate my difficulty
Here's my most recent Checkup for example
I would say itâs on the easier side, if you want a more accurate description but also I think early abstract algebra problems just tend to be
Like itâs hard to come up with an interesting difficult problem without more theiry
Theory
That's fine if they're starting off easier yeah. Topics we've covered so far:
- Algebraic systems in general
- Groups
- Proving group properties
- Subgroups
- Cyclic groups
We're hitting symmetric, dihedral, and more general transformation groups (orthogonal etc) this week.
Oh fun, the last checkup problem has a formal group law đ
Formal group law? đŽ
x+y+xy is an example, it is basically a power series in two variables that acts like a product in a Lie group
Whoa. I didn't know that's a Thing-In-General. LOL
I just knew that's an example of a funky group operation that still works.
Yeah itâs one of very few that are easy to write down
will the students have already taken a proof-heavy course beyond their intro to proofs (or similar) course? If not maybe that is something to keep in mind
not necessarily to lower the difficulty but just like
I remember when my algebra prof did this one thing it's hilarious in hindsight, I think he assumed we all had him previously for discrete (many of us had someone different lol) and he said "hey you guys remember Chinese remainder theorem? that's basically the idea" and then started doing a bunch of computations that we couldn't grasp the purpose of
yes
i recently came across the idea of teaching geometric algebra alongside linear algebra. ive heard of geometric algebra only recently and purchased two texts that discuss the subject (so i dont know much about it)
what are your thoughts on integrating geometric algebra alongside linear algebra in a standard curriculum?
seems that it gives a good interpretation of a lot of things. ive heard that 3b1b's interpretation of the determinant was similar to the interpretation in geometric algebra, and that it also gives tools for exploring manifolds and generalizing ideas in vector calculus
Is there a even good way to define the exterior product in general without depending either on constructing a wildly large space and then quotienting most of it away again, or on axiomatically asserting a universal property? Either of those would be at a rather more demanding level of abstraction than typical freshman linear algebra (which already seems to present plenty of struggles to many beginning students).
the determinant example was only scratching the surface. https://en.wikipedia.org/wiki/Geometric_algebra is what i am talking about, because i dont know enough to explain it myself
In mathematics, the geometric algebra (GA) of a vector space is an algebra over a field, noted for its multiplication operation called the geometric product on a space of elements called multivectors, which contains both the scalars
F
{\displaystyle F}
and the vector space
V
...
this is also what ive been wondering.
but yeah i see what u mean here, somewhat
Iâd love to see torque and angular momentum in classical mechanics become taught as a bivector one day
well yeah i was about to say the first point myself lol
i am looking more for opinions of more experienced people
I remember asking my physics instructor in my 1st year of college how we actually define all the angular analogues of cartesian coordinate physics stuff and he didn't really give me a clear answer and I felt very left behind because it seemed we were just accepting things at face value to memorize rather than actually fitting some math thing to how reality works
So actually that sounds amazing
Welcome to physics, how may I help you
Do as little math as possible to get the right answer is the attitude of many physicists
#physics-pedagogy: why are we not teaching Lagrangian mechanics in high school
I hate when im tutoring students and I ask them what they're doing in their class and they say "chapter 3" like thanks that helps a lot
lmao
whats pedagogy
the tutoring company I work for tells students to convert improper fractions to mixed numbers. what are the advantages and disadvantages of this?
I have some ideas but I want your opinions
I think the advantages are close to none and the disadvantages are many
The one advantage is that some teachers take off points if you do not convert them
Maybe in some cases 2½ is more practical than 5/2?
I'd argue a decimal would be even better though
I canât imagine when hahaha
see this as the main advantage I can think of but then you might as well use decimals tbh
A bit cheesy but writing 35907325972314/1239713425 as a mixed number tells you as at a glance how big it is
yeah but again decimals work too
OK. It tells you simultaneously how big it is and a number which when multiplied by it yields an integer
and I mean I guess it's the same thing as (x+1)/x vs 1+1/x and shit like that which can be advantageous in different ways
Can't do that with decimals
Clearly none of these are good reasons to make students do it lol
Ofc they should know how
But a correct rational number is a correct rational number
exactly
I don't see why mixed numbers are even taught in the first place
and the notation is terrible
Off topic, do sully reacts feel like... hostile... to anyone else
lmao
It's a very unique emoji among emojis in this server
I'm in like 4 math servers, only the ones with anonymous people have sully in their culture
I couldn't dream of someone in AGS reacting with sully
It is much easier to be hostile anonymously
I think a decent person would be decent anonymously too
According to a good definition of decent
I think you should avoid conflating indecent with hostile lol
A great many posts on this server deserve to be sullied
The vibe here is also intentionally different, as AGS and similar servers are meant to be less casual and more professional
Whereas this place has more banter
It's just weird how sully evolved from something funny to something hostile over time
In 2017 sully was funny
It was always hostile
It was invented to be hostile
The original meme it comes from was an insult lol
I was here for a bit in 2017, it meant the same thing but didn't carry the same weight
It's just a perception but it's gotten heavier
I canât say Iâve ever taken a sully seriously either way
Well, getting sullied by a random guy who just joined wouldn't feel the same way
Oh are you referring to this
I doubt I'd sully anything I wrote even if someone else wrote it
That wasnât the question lol
Well how do you judge something sully worthy except by your own judgment
Am I predicting someone else might find something I write sully worthy?
You can believe something and still understand whether it deserves a sully
I believe that
I sully messages based on one criterion:
is message dumb?
if yes ----> sully
if no -----> probably still sully but less likely
This is true as far as I said, I said it's cheesy and not a reason to make students do it, but there's some mathematical connection too: In number theory, the real absolute value measures size while the p-adic absolute values measure degree of divisibility by p
So writing it as a mixed number tells you the interval [n,n+1) the number falls in
I don't think 5th graders care about p adics
don't decimals kinda achieve this?
I mean youâre openly admitting it wasnât a response to the original question so I maintain the sully
lol

it is so laughable
Decimals lose precision
Yes?
Unless you are requiring they be finite
Yes
Why?
A rational number can be stored in finite space
You can't store a generic real number in finite space
that is a valid point actually
you could use the repeating bar thingy for decimals if necessary
So can a decimal
I want to emphasize that this isn't a reason overweighing reasons to use improper fractions but just something to think about
yeah
I mean again a decimal can also be stored in finite space, though
A decimal with a bar can be thought of as a mixed number with extra steps
This also doesnât like
Differ between mixed fractions and fractions
I also donât think students should have to give their answers as decimals
I also offer the practical and historical reason for mixed numbers: so students can read them in newspapers and other things where mixed numbers appear
Chess match results âď¸
I just had a long argument with a friend whether 11/2 is an acceptable way to write 1 and a half
or whether 11/2 should be read as 5.5
And it all came from the match result of 1 1/2 - 1/2 in a chess match
that's why I hate mixed numbers
According to the practical and historical reason, students should just learn how to read them but don't need to write them when they are taking tests
yeah I agree with that
and they should know that 1 1/2 = 1 + 1/2
oh shit I just realized mixed numbers are a form of concatenation
:o
Hmmm
Concatenation talk is your talk?
I saw that in events
Ok I have some more thoughts on mixed numbers vs. improper fractions
When I did MathCounts the only correct form of a fraction was an improper fraction. This is for ease of grading, but the emphasis on improper fractions is very good for mathematical development. It makes people more comfortable with rational numbers
For example, I can imagine a student being worried about whether (x^2+1)/(x-1) represents a number in all cases where x is not 1 because "in some cases, it's an improper fraction"
Another advantage of improper fractions: you can see at a glance the numerator of 128/81 is a power of 2 which can suggest some combinatorial interpretation, whereas 1 and 47/81 is much more opaque
Say if that answer is a measurement. It's more useful to write that as 2½ cm than 5/2 cm. Although 2.5 cm is the most useful
I think there's no argument that improper fractions are easier to use in calculations but they are less readable as final answers

around round 2