Science Memes
Welcome to c/science_memes @ Mander.xyz!
A place for majestic STEMLORD peacocking, as well as memes about the realities of working in a lab.

Meta Post Tags
Rules
- Don't throw mud. Behave like an intellectual and remember the human.
- Keep it rooted (on topic).
- No spam.
- Infographics welcome, get schooled.
If you are here asking: "Is this a science meme?"
Probably, yes. We use the Dawkins definition of meme: a replicating idea, not just an image macro with a fact on it. A good post here doesn't need to teach you something. It needs to make you ask something: who, what, where, when, and especially why or how.
Science isn't a filing cabinet of facts, it's a conversation. For example, a photo of an eel or other localized wildlife counts because most people never see one, and wonder is the first step of inquiry. A car meme counts if it makes you curious about what's under the bonnet. If you want to talk about something you noticed in the world, chances are someone else wants to talk about it too.
We moderate for vibe, not category. Pruning is light, especially where a post creates interesting discussion. Experimenting is encouraged.
See the pinned paper on Shitposting as Public Pedagogy if you want the academic case for why this works.
Research Committee
Other Mander Communities
Science and Research
Biology and Life Sciences
- !abiogenesis@mander.xyz
- !animal-behavior@mander.xyz
- !anthropology@mander.xyz
- !arachnology@mander.xyz
- !balconygardening@slrpnk.net
- !biodiversity@mander.xyz
- !biology@mander.xyz
- !biophysics@mander.xyz
- !botany@mander.xyz
- !ecology@mander.xyz
- !entomology@mander.xyz
- !fermentation@mander.xyz
- !herpetology@mander.xyz
- !houseplants@mander.xyz
- !medicine@mander.xyz
- !microscopy@mander.xyz
- !mycology@mander.xyz
- !nudibranchs@mander.xyz
- !nutrition@mander.xyz
- !palaeoecology@mander.xyz
- !palaeontology@mander.xyz
- !photosynthesis@mander.xyz
- !plantid@mander.xyz
- !plants@mander.xyz
- !reptiles and amphibians@mander.xyz
Physical Sciences
- !astronomy@mander.xyz
- !chemistry@mander.xyz
- !earthscience@mander.xyz
- !geography@mander.xyz
- !geospatial@mander.xyz
- !nuclear@mander.xyz
- !physics@mander.xyz
- !quantum-computing@mander.xyz
- !spectroscopy@mander.xyz
Humanities and Social Sciences
Practical and Applied Sciences
- !exercise-and sports-science@mander.xyz
- !gardening@mander.xyz
- !self sufficiency@mander.xyz
- !soilscience@slrpnk.net
- !terrariums@mander.xyz
- !timelapse@mander.xyz
Memes
Miscellaneous
view the rest of the comments
Pi is roughly 5.
Never, in any engineering field, have I EVER seen anyone simplify pi to 5. For that matter, I have never seen anyone simplify to 3. It is always 3.14. I feel like pi simplification is a weird meme that people think engineers do but is never practiced anywhere.
It's like if there was a meme about chefs saying they always replace eggs with grapefruit. No they don't, and it's nonsense to think they do.
There's less and less reason to do it (and it's never 5). On systems without floating point you might want to round it a bit, but only if the specific thing you're doing allows it, and even then you're more likely to do a fixed-point approach by using e.g. 314 and dividing by 100 later, or adjusting that value a bit so you can divide by 128 via bitshift if you're on a chip where division is expensive. However, in 2025 you almost certainly should have picked a chip with an FPU if you're doing trigonometry.
And while rounding pi to 3 or 4 is certainly just a meme, there are other approximations which are used, like small-angle approximations, where things like
sin(x)can be simplified to justxfor a sufficiently smallx.For back-of-the-envelope or mental calculations, pi is often 3 or 10^(1/2).
The latter is better than 1% accurate, and has nice properties when doing order-of-magnitude/log space calculations in base 10.
There's a lot of weird stereotypes out there that make no sense. Like the whole "programmers wear thigh high socks" thing. Where did that even come from?
Bet that one was started by all those dastardly programmers that wear knee high socks!
you've never seen anybody simplify it to 3 when doing head calcs without a phone nearby?
it doesn't happen often, in fact I've seen it once. in a decade.
The only time you should be doing head calcs as an engineer is to double check that you have a reasonable answer with the actual calcs on your actual calculator.