this post was submitted on 08 Sep 2026
804 points (97.7% liked)
Memes
16985 readers
891 users here now
Post memes here.
A meme is an idea, behavior, or style that spreads by means of imitation from person to person within a culture and often carries symbolic meaning representing a particular phenomenon or theme.
An Internet meme or meme, is a cultural item that is spread via the Internet, often through social media platforms. The name is by the concept of memes proposed by Richard Dawkins in 1972. Internet memes can take various forms, such as images, videos, GIFs, and various other viral sensations.
- Wait at least 2 months before reposting
- No explicitly political content (about political figures, political events, elections and so on), !politicalmemes@lemmy.ca can be better place for that
- Use NSFW marking accordingly
Laittakaa meemejä tänne.
- Odota ainakin 2 kuukautta ennen meemin postaamista uudelleen
- Ei selkeän poliittista sisältöä (poliitikoista, poliittisista tapahtumista, vaaleista jne) parempi paikka esim. !politicalmemes@lemmy.ca
- Merkitse K18-sisältö tarpeen mukaan
founded 4 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
As the other poster succinctly said, it's about iterative solving problems. What might not be obvious is where you want to use this.
Let's say you are holding onto a continuous, all-metal cooking pan's handle and you turn on the burner; at what second will it be too hot to hold? If we assume the pan is starting at 20 C and it'll be too hot for your leathery, lemmy-browsing hand at 100 C, then we at least have some basic bounds on the problem, but how do we think about the middle parts?
We could say that the burner is putting out about 5 kW of energy (or more simply, that the pan's bottom has a fixed input of 5 kW (a so-called boundary condition). With a basic equation translating energy input into temperature (factoring in specific heat), we at least know the temperature of the bottom of the pan at a given moment, but what about the top of the pan and, most importantly, the handle? The temperature in these places isn't climbing because they're getting licked by flames, but due to thermal conductivity away from the bottom.
Thermal conductivity is actually one of the simplest questions in partial differential equations (PDEs), and is addressed with the aptly named heat equation. In extremely casual terms, the heat equation (du/dt = L u) is saying that the heat at a given position is determined by its past heat plus the past heats of positions around it. Our job as mathematicians is to express our problem using a so-called weak form of the heat equation that makes it possible for an iterative solution.
We can solve weak form equations with a framework like the Finite Differences method (which is a little dated but easier to understand than other methods, and also still quite effective). This very basically means we'll create a fixed grid of points, then express the relationships between them with algebra.
Once we have our algebraic mesh and we are happy with all of our boundary conditions, we can start the simulation. We watch as the temperature immediately shoots up on the bottom of the pan (followed soon after by the top and edges), then as heat slowly transfers up the handle until it reaches 100 C at the end.
In doing these problems, we make as many simplifications as possible in the boundary conditions, because the equation's solution space is unfathomably large. Everything we can do to constrain it (easy heat source, exact physical parameters of our materials, etc) shrink the solution space closer to one that matches our actual problem.
As a final thought, lots of very bright people have spent entire careers designing heatsinks using numerical methods, so don't take my description of the heat equation as an easy problem to mean it's not a great line of inquiry, but rather that the field is really fucking hard. Anyone who does this stuff can, in fact, hold a 90 C pan handle because their tolerance for pain is astronomical.
Thank you so much for your insight