• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Many US Kids confused by equals sign

Page 4 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.
This is a direct result of the foolish idea that all students are capable and intelligent. This is simply not the case. Some students are just stupid, and should be treated as such. These foolish teaching methods are to blame for the ignorance of todays children. We have to abandon the idea that all children are equally intelligent. Some kids are just stupid. Everyone knows this.

/thread
 
what the hell, in 6th grade I was learning algebra. sure, I had a hell of a time with factoring but not knowing what an equals sign was? puh-leez.
 
If children don't understand =, then children were not taught =.

It's time to disband the destructive teachers union and hire only teachers who.....


yeah obvious friggin statement alert....


you have been warned....




know how to teach.
 
In college intro CS classes, there were several math majors who couldn't wrap their heads around this:

Code:
x = x + 1;
So I guess even math majors can be confused by equal signs 😉
Though as far as a plain math equation goes, it might seem initially weird.

x = x + 1
x = 3
3 = 3 + 1
3 = 4
Head asplodes.

Hopefully once they get the idea that "=" is an assignment operator, they'll be able to comprehend it better.

(Then tell them about x += 1; 🙂)
 
Though as far as a plain math equation goes, it might seem initially weird.

x = x + 1
x = 3
3 = 3 + 1
3 = 4
Head asplodes.

Hopefully once they get the idea that "=" is an assignment operator, they'll be able to comprehend it better.

(Then tell them about x += 1; 🙂)

That's not math, that's assignment expression. Mathematically x=x+1 doesn't make sense.
 
Fucking duh? This is what happens when all you do is push for standardized testing scores. This is what happens when you base how much money a school gets on what kind of score their kids get in standardized tests. Our educational system is so fucked up if I ever have kids I'll work as many jobs as needed in order to send them to a private school. I also wouldn't doubt that you could track this "change" back to the feminist movement and the drastic changes feminists have had on the educational system.
 
lol this doesn't surprise me at all. Back when i used to tutor, our tutoring center had us teach percentages by stupid little algorithms that make the problem mindlessly easy but allows someone with no understanding of the problem to be able to return the correct answer.

What is X percent of 30.
Take the number after is, put it over the number after of, set it equal to x/100.
 
Fucking duh? This is what happens when all you do is push for standardized testing scores. This is what happens when you base how much money a school gets on what kind of score their kids get in standardized tests. Our educational system is so fucked up if I ever have kids I'll work as many jobs as needed in order to send them to a private school. I also wouldn't doubt that you could track this "change" back to the feminist movement and the drastic changes feminists have had on the educational system.

Yup this is exactly why stuff like this happens. The primary goal of education is no longer to learn, but it's to do well on tests.
 
Eh that's just mark up, it's an assignment operator. You can use set, :=, let etc. That's got nothing to do with the idea of equality.

Yes you can, but my point is we were doing C and in C '=' is the assignment operator, and '=' is an "equals sign". The thread isn't called "Many US Kids confused by equivalence operator" (which is probably the case).
 
lol this doesn't surprise me at all. Back when i used to tutor, our tutoring center had us teach percentages by stupid little algorithms that make the problem mindlessly easy but allows someone with no understanding of the problem to be able to return the correct answer.

What is X percent of 30.
Take the number after is, put it over the number after of, set it equal to x/100.

Um that doesn't work.

Unless I'm completely not understanding your explanation?
 
Eh that's just mark up, it's an assignment operator. You can use set, :=, let etc. That's got nothing to do with the idea of equality.
Yes, we know.

The problem is, the incoming students evidently don't know that.

In the rest of the sane world, x = x + 1 is a nonsense equation.
In the madness of programming 🙂P), "=" can do something totally different, just as "^" can refer to an exponent, but if you're doing programming, now you might be doing an XOR operation.

So yeah, I can show x = x + 1 to one crowd, and be met with confusion. I can show x = x + 1 to another, and they'd point out that I'm missing a semicolon.
 
If children don't understand =, then children were not taught =.

It's time to disband the destructive teachers union and hire only teachers who.....


yeah obvious friggin statement alert....


you have been warned....




know how to teach.

Yah. In the 1950's the teachers unions were far more powerful than today. And they only taught the generation that sent a rocket to the moon.

It's 100 percent bullshit the teachers unions are the reason kids aren't learning.
It's because there is a political ideology in this country that wants to destroy unions that this myth is perpetuated.
Many, many, many school systems don't have unions, or have very, very weak unions. And kids don't learn there either.

Its the war on teachers and education that's the reason we don't address the two real reasons. The parents and the funding.

Remember that the "conservative" philosophy is don't overeducate the lower classes. If you do they will not be happy with their status.
There's a great quote by Winston Churchill about this, I can never remember what is was exactly.
 
I find myself having trouble in college math courses sometimes now because of the way I was taught to do math all of my life. I don't have problems with the equals sign, public school just did not teach me how to LEARN.

You don't learn that skill from school. You learn it from video games. Die and die and die until you learn how to play the freakin game. Then when you go to math class it's the same way, sort of. Just like Megaman, math is easy if you know where to stand and which weapon to use on each boss.


Um that doesn't work.

Unless I'm completely not understanding your explanation?
He's technically right, but his method is convoluted and confusing. Normal people just divide numbers and multiply by 100. Say I have a room of 20 people and 7 of them are black. If I express that as "per unit" it would just be 7/20 = 0.35
Per Cent literally means per 100, so normalize it to 100 by multiplying by 100. 0.35 * 100 = 35% of the people are black.
The way he wrote it is like this:
7/20 = X/100 ----> X = 35%
 
Last edited:
Back
Top