Comment by vel0city
Comment by vel0city 3 months ago
>>> a = 3.0
>>> b = 3
>>> type(a) == type(b)
False
The right answer they were looking for was 3, not 3.0. Adding that .0 implies a precision which is not correct. They weren't looking to see if you knew the arithmetic with that question, they wanted you to show you understood what they meant by "whole number" and understand you can't just leave arbitrary precision after rounding. You didn't give the right answer and apparently kept complaining about it instead of trying to figure out why you were wrong to the point they threatened suspension. I imagine your complaints based on your assumption you couldn't be wrong were causing quite a distraction.For example, 10 / 3 = 3.333... right? We're then asked to round to the nearest whole number, and the answer should be 10 / 3 = 3. It is not correct to then say 10 / 3 = 3.0, because that is just wrong.
I'd end up siding with the teacher on this one. Just acknowledge you didn't understand what they were looking for and do better next time.
As someone who (almost!) has a PhD in mathematics I'm going to have to call you out on this point. You are thinking like an engineer and talking about precision, but this is mathematics, not engineering. We make no distinction between the "real" number 3, the "complex" number 3, and the "whole" number 3. The number 3 lives in each of these universes as the same object (so to speak) because these sets (whole, real, complex) numbers are included in one another. Writing 3.0 is a representation for 3 just as 2.9999... is a representation of 3. Perhaps the bigger question we should be asking here is what was the purpose of all of this discussion? I've seen such petty treatment by teachers all the time and it always discouraged me from pursuing math until I met professors in university who actually tried to teach us something interesting and beautiful about math. This question could have led in that direction actually with a discussion of different kinds of numbers but unfortunately many math teachers in the US are not capable of this, or are too discouraged by the other craziness in schools to have the energy for such conversations.