416
submitted 1 day ago by [email protected] to c/[email protected]

Meme of two women fighting while a man smokes from a pipe in the background.

The women fighting are labeled "mathematicians defining pi" and "engineers just using 3 because it's within tolerance"

The man smoking is labeled "astrophysicists" and the pipe is labeled "pi = 1"

top 50 comments
sorted by: hot top new old
[-] [email protected] 22 points 12 hours ago

38 digits of pie gives youv an error of less then a hydrogen atom in the circumference of the known universe.

https://www.jpl.nasa.gov/edu/news/how-many-decimals-of-pi-do-we-really-need/

[-] [email protected] 15 points 12 hours ago

Using 1 is fun. That means the circumference of a circle is equal to its diameter.

[-] [email protected] 7 points 8 hours ago

Isn't this functionally true for objects on the infinite focal plane? I.e. a star? Betelgeuse might actually be huge in absolute terms, but from earth, and even in a large telescope, it's still a pinpoint whose circumference is not meaningfully distinct from its diameter.

[-] [email protected] 1 points 1 hour ago

It would be the size of the telescope's diffraction artifacts probably. Meaning the shape you see on the picture is not related to the size of the star but only to the physical limits of the optical instrument. This diffraction pattern is proportional to the color your looking at and inversely proportional to the size of the telescope primary mirror. The bigger the telescope primary mirror, the smaller the diffraction pattern and the more chance you have that this artifact will not completely hide the object you are looking at. I didn't do the math, but I guess to image the actual disk of Betelgeuse, the size of the telescope you need is probably still science fiction, even with interferometry.

[-] [email protected] 5 points 8 hours ago

Euclidean geometry enjoyers in shambles

[-] [email protected] 10 points 11 hours ago

Electrical engineer. Never used 3. Always 3.14. don't really get the joke.

[-] [email protected] 2 points 6 hours ago

I've seen some blueprints who use 3.5. I guess it's close enough but definitely not too small

[-] [email protected] 34 points 14 hours ago

As a retired mechanical engineer, the joke is that we don't really remember the value of Pi, but we think it's somewhere around 3. But maybe we should use 4 just to be safe.

In any case, I have to remember 3.14 because one of my Daughters was born on Pi Day. Which, according her, is the second most important day of the year, just right behind Christmas Day, when she was growing up. So when she got into high school that meant that we had to bring enough pie to be served in each of her math classes on that day. (Oddly enough she prefers cheese cake over pie on her Birthday).

Now I'm not saying being born on Pi Day influenced her life any, but she has a PhD in Mech Engineering.

[-] [email protected] 11 points 12 hours ago

Good news for her. Cheese cake is a pie not a cake.

[-] [email protected] 3 points 11 hours ago

This made my day.

Solidifies my preference for pie over cake

[-] [email protected] 15 points 14 hours ago

You sound like an involved and caring father. Rock on, dude

[-] [email protected] 5 points 11 hours ago

Theres a YouTube video where the presenter demonstrates DOOM running (or not) with varying values of Pi that's quite interesting: Non Euclidean DOOM

[-] [email protected] 17 points 15 hours ago
[-] [email protected] 149 points 22 hours ago

38 digits of pi can get the circumference of the visible universe to within a single hydrogen atom.

10 digits gets the diameter of the earth to within an inch.

Thank you for subscribing to Daily Spacey Math Facts

[-] [email protected] 13 points 13 hours ago

10 digits gets the diameter of the earth to within an inch.

Put another way, 10 digits means that your error will be caused by your imprecise model of the Earth's shape, rather than imprecision in the value of pi.

[-] [email protected] 16 points 18 hours ago* (last edited 18 hours ago)

And just two digits introduces less error than your average terrible model

[-] [email protected] 9 points 15 hours ago

Wow, what do you have against models? I mean, I know that the trope is that they aren't very smart, but the same trope applies to firemen, so why pick on models?

[-] [email protected] 2 points 12 hours ago

old man voice this must be that ragebait thing the youngsters are always talking about

load more comments (1 replies)
[-] [email protected] 10 points 17 hours ago

The real comment mvp. You deserve every positive vote my post got

load more comments (2 replies)
[-] [email protected] -1 points 6 hours ago

So this is just an Ai produced meme?

[-] [email protected] 7 points 4 hours ago

"Everything I don't like is ai"

Grow up. The imgflip watermark is clearly visible in the meme, and it's an ancient meme format.

[-] [email protected] 22 points 19 hours ago

Computer science: pi is O(1)

[-] [email protected] 8 points 16 hours ago

Is it actually? I'll admit im pretty rusty on time complexity, but naively I'd think that pi being irrational would technically make even reading or writing it from memory an undecidable problem

[-] [email protected] 15 points 15 hours ago

If you're trying to calculate it, then it's quite difficult.

If you just want to use it in a computer program, most programming languages have it as a constant you can request. You get to pick whether you want single or double precision, but both are atomic (a single instruction) on modern computers.

[-] [email protected] 8 points 14 hours ago

Do said atomic instructions produce pi though, or some functional approximation of pi? I absolutely buy that approximate pi is O(1), but it still seems like a problem involving a true irrational number should be undecidable on any real turing machine

[-] [email protected] 3 points 11 hours ago

The "true value of pi" is too large for any computer to store. Our current understanding of numbers says it's an infinite number of digits. On the other hand, any number you use to multiply with pi is far less than an infinite number of digits. So you get the correct answer, with no worse precision than your input value, using the approximations of pi.

[-] [email protected] 3 points 13 hours ago

What would be the "n" in that Big O notation, though?

If you're saying that you want accuracy out to n digits, then there are algorithms with specific complexities for calculating those. But that's still just an approximation, so those aren't any better than the real-world implementation method of simply looking up that constant rather than calculating it anew.

[-] [email protected] 2 points 8 hours ago

I guess n would be infinite in the limit I'm looking for. I'm looking at this in like a "musing about theoretical complexity" angle rather than actually needing to use or know how to use pi on modern systems.

For the record, I realize how incredibly pedantic I'm being about the difference between the irrational pi and rational approximations of pi that end up being actually useful. That being said, computational complexity has enough math formalism stink on it that pedantry seems encouraged

load more comments (1 replies)
[-] [email protected] 6 points 13 hours ago

It's a number and complexity refers to functions. The natural inclusion of numbers into functions maps pi to the constant function x -> pi which is O(1).

If you want the time complexity of an algorithm that produces the nth digit of pi, the best known ones are something like O(n log n) with O(1) being impossible.

[-] [email protected] 4 points 15 hours ago

It's usually a constant (or several ones with varying degrees of accuracy and size)

load more comments (1 replies)
[-] [email protected] 49 points 1 day ago

as an engineer, a lot of languages (even proprietary ones) have a built-in constant pi variable because it is so ubiquitous - its easier and more readable to use pi than 3........

[-] [email protected] 4 points 14 hours ago

I've also never seen a fellow engineer simplify pi to just 3, although I have seen a rise of memes from people who think they do.

I would slap someone if I saw them try that, it's unnecessarily sloppy. 3.14 is the default, and trivial to work with if you're using a calculator (I would also slap someone if I saw them not using a calculator). Unless you just LIKE having all your calculations be off by almost 5%. Then you'll come back wondering why so many of your parts are out of tolerance.

load more comments (13 replies)
[-] [email protected] 10 points 18 hours ago
[-] [email protected] 12 points 17 hours ago
[-] [email protected] 6 points 15 hours ago* (last edited 15 hours ago)

(355/113)/ pi = 1.0000000849136...

[-] [email protected] 4 points 15 hours ago

That's way more numbers to remember than 1/7 above 3

load more comments (2 replies)
[-] [email protected] 32 points 22 hours ago

As an Astrophysicist, I have never seen anybody use pi=1, you just leave the character, it's anyway better to read, is not like you do any calculations by hand anyway. More common is c=hbar=kB=1, but that is not an approximate, is a gauge in another unit system. Also... Astronomy is not astrophysics...

[-] [email protected] 10 points 16 hours ago

As an astrophysicist, can you read me my horoscope? I'm a scorpion

[-] [email protected] 5 points 12 hours ago

Sure, give it to me, I can read it for you.

load more comments (1 replies)
load more comments
view more: next ›
this post was submitted on 17 Jun 2025
416 points (97.5% liked)

Science Memes

15221 readers
1533 users here now

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.



Rules

  1. Don't throw mud. Behave like an intellectual and remember the human.
  2. Keep it rooted (on topic).
  3. No spam.
  4. Infographics welcome, get schooled.

This is a science community. We use the Dawkins definition of meme.



Research Committee

Other Mander Communities

Science and Research

Biology and Life Sciences

Physical Sciences

Humanities and Social Sciences

Practical and Applied Sciences

Memes

Miscellaneous

founded 2 years ago
MODERATORS