Pinned
Hi everyone! My friend Dario is trying to get top surgery, if you could pitch in or at least share his gofundme it would be lovely!
I hope you'll let me tell you a little bit about my home🇵🇸, Gaza🍉. It's a place where we're living through some very challenging times💔🥹. We're under attack from bombs, explosives, and warplanes, and we've had to endure many nights of sleeplessness. It's a difficult situation💔, but we're trying to stay positive🖤. This war has really taken a toll on us. It's destroyed our bodies, our lives, and our souls. It has been so sad to see our homes destroyed, our belongings taken from us, and our beautiful places ruined. It has also changed our situation for the worse. We were living a pretty good life, you know? Peaceful, loving, and full of life. But then, we found ourselves in a really tough spot. Hunger, fear, and terror have become our new normal. My kids and I, along with my extended family, are struggling to make ends meet. We don't have the basic necessities of life, and our living situation is pretty rough. We're in these old, falling-apart tents. It's so hard to know what to do when winter comes. We'll be soaked in the rain and wind, and I'll be at a loss as to how to keep my family safe, from the bombing and from the winter.🥹
🥹❤️🩹https://gofund.me/ed6e9cb6🥹❤️🩹
@fancysmudges @brokenbackmountain @just-browsing1222-deactivated20 @mothblossoms @aleciosun @fluoresensitive @khizuo @lesbiandardevil @transmutationisms @schoolhater @timogsilangan @appsa @buttercuparry @sayruq @malcriada @palestinegenocide @sar-soor @akajustmerry @annoyingloudmicrowavecultist @feluka @tortiefrancis @flower-tea-fairies @tsaricides @riding-with-the-wild-hunt @visenyasdragon @belleandsaintsebastian @ear-motif @kordeliiius @brutaliakhoa @raelyn-dreams @troythecatfish @theropoda @tamarrud @4ft10tvlandfangirl @queerstudiesnatural @northgazaupdates2 @skatezophrenic @awetistic-things @camgirlpanopticon @baby-girl-aaron-dessner @nabulsi @sygol @junglejim4322 @heritageposts @chososhairbuns @palistani @dlxxv-vetted-donations @illuminated-runas @imjustheretotrytohelp
Most everyone in the world (at least in theory) knows how to add, subtract, multiply, and divide numbers. You can always add two numbers, subtract two numbers, and multiply two numbers. But you must **never** divide by zero... or something along those lines. There's often a line of logic that leads to dividing by zero leading to "infinity," whatever infinity means, unless you're doing 0/0, whatever that means either. Clearly this is a problem! We can't have such inconsistencies in our fundamental operations! Why aren't our top mathematicians working on this?
So, that might be a bit of an exaggeration: division by zero isn't really a problem at all and is, for all intents and purposes fairly well understood, but to see why we'll have to take a crash course through algebra (the field of math, not the grade school version). Sorry for those of y'all who have seen fields and projective space before, not much to gain out of this one.
As is true with most things in math, the only structure we start with is a set. A set isn't useful for much; all we can do with a single set is say what elements are and aren't in the set. Once you have more than one set, you start getting interesting things like unions or intersections or functions or Cartesian products, but none of those are _really_ that useful (or at least necessary) for understanding algebraic structures at the level we need, so a single set is what we start with and a single set there will be. The story then goes as follows: on the first day the lord said "Let there be an operation!" and it was so. If you want to be a bit of a nerd, a (binary) operation on a set A is formally a map * : A x A -> A, but for our purposes we just need to know that it matches the standard operations most people know (i.e. addition, subtraction, multiplication, but not division) in that for any two numbers a and b, we can do a * b and get another number. Of course, once again this is not very helpful on its own, and so we need to impose some more conditions on this operation for it to be useful for us. Not to worry though, these conditions are almost always ones you know well, if not by name, and come rather intuitively.
The first structure we'll discuss is that of a monoid: a set with an operation that is associative and has an identity. Associativity simply means that (a * b) * c = a * (b * c), and an identity simply means that we have some special element e such that a * e = e * a = a. For two simple examples and one nonexample, we have the natural numbers (with 0) under addition is a monoid: 0 + a *= *a *+ 0 = *a, and any two natural numbers add to another natural number; the integers under multiplication is a monoid: 1 * a = a * 1 = a, and any two integers multiply to another integer; and the integers under subtraction is not a monoid, since subtraction is not associative (a - (b - c) =/= (a-b) - c). In both of these examples, the operation is commutative: in other words, a * b = b * a for every a and b. There are plenty of examples of operations that are not commutative, matrix multiplication or function composition probably being the most famous, but for the structures we're going to be interested in later operations are almost always commutative, so we can just assume that from the start.
Of course, you might wonder where subtraction comes from, if it doesn't fit into a monoid structure (and in particular isn't associative). Not to worry! We can simply view subtraction as another type of addition, and our problems go away. In particular, we add the condition that for every a, we have an inverse element a⁻ ¹ (or -a if our operation is addition) such that a * a⁻ ¹ = a⁻ ¹ * a = e. For fans of universal algebra, just as a binary operation can be thought of as a function, the inverse can be thought of as a function i : A -> A that sends each element to its inverse. This forms a structure we know as a group. While none of the above examples form a group, one of them can be naturally extended to a group: if we simply add negative whole numbers to natural numbers, we get the group of integers over addition, where for any integer a, we have its inverse -a where a + -a = 0. In particular, the subtraction a - b is just a + -b = -b + a, where -b is the additive inverse of b. As we will soon see, division can also be thought of in a similar way, where a/b = a * /b = /b * a where /b is the multiplicative inverse of b. As a side note, the examples above are very specific types of monoids and groups which turn out to be quite far from the general ideas that monoids and groups are trying to encapsulate. Monoids show up often in computer science as they're a good model for describing how a list of commands affects a computer, and groups are better thought of as encapsulating symmetries of an object (think of the ways you can rotate and reflect a square or a cube).
If you've ever taken introductory algebra, you've probably never heard of monoids and only done groups. This is partially because monoids are much less mathematically interesting than groups are and partially because monoids are just not as useful when thinking about other things. For the purposes of this post, however, the logical steps from Set -> Monoid -> Group are surprisingly similar to the steps Group -> Ring -> Field, so I've chosen to include it regardless.
Just as we started from a set and added an operation to make a monoid, here we start from an additive group (i.e. a group where the operation is addition) and add another operation, namely multiplication, that acts on the elements of the group. Just like in the monoid, we will impose the condition that multiplication is associative and has an identity, namely 1, but we also impose the condition that multiplication meshes nicely with addition in what you probably know as the distributive properties. What we end up with is a ring, something like the integers, where you can add, subtract, and multiply, but not necessarily divide (for example, 2 doesn't have a multiplicative inverse in the integers, as a * 2 = 1 has no solutions). Similarly, when we add in multiplicative inverses to every nonzero element, we get a field, something like the rational numbers or the real numbers, where we can now divide by every nonzero number. In other words, a ring is an additive group with a multiplicative monoid, and a field is an additive group with a subset that is a multiplicative group (in particular the subset that is everything except zero). For those who want to be pedantic, multiplication in a ring doesn't have to be commutative, but addition is, and both addition and multiplication are commutative in a field. A full list of the conditions we impose on the operations of a monoid, group, ring, and field can be found here).
So why can't we have a multiplicative inverse to 0 in a field? As it turns out, this is because 0 * a = 0 for every a, so nothing times 0 gets you to 1. There is technically a structure you can have if 0 = 1, but it turns out there's only the one single element 0 in that structure and nothing interesting happens, so generally fields specifically don't allow 0 = 1. Then, what if instead we relaxed the condition that 0 * a = 0? Similarly, it turns out that this isn't one of the fundamental conditions on multiplication, but rather arises from the other properties (a simple proof is a * 0 = a * (0 + 0) = a * 0 + a * 0 implies 0 = a * 0 - a * 0 = a * 0 + a * 0 - a * 0 = a * 0). If we were to relax this condition, then we lose some of the other nice properties that we built up. This will be a recurring theme throughout the rest of this post, so be wary.
While all the structures so far have been purely algebraic and purely algebraically motivated, the simplest way to start dividing by zero is actually "geometric," with several different ways of constructing the same space. The construction we'll use is as follows: take any field, particularly the real numbers or the complex numbers. We can always take the cartesian product of a field K with itself to form what's called affine space K^2, which is the set of ordered pairs (a,b) for a, b in K. As a side note, the product of groups, rings, or fields has a natural definition of addition or whatever the underlying group operation is by doing it componentwise, i.e. (a,b) * (c,d) = (a * c, b * d), but our operations will not coincide with this, as you'll see soon. This affine space is a plane - in fact, when we do this to the real numbers, we get the Cartesian plane - within which we can construct lines, some of which we get by considering the set of points (x, y) satisfying the familiar equation y = mx + b for some 'slope' m and 'intercept' b. In particular, we want to characterize all the lines through the origin. This gives us all the lines of the form y = mx, as well as one additional line x = 0. This is the basic construction of what we call the projective line, a space characterizing all the lines through the origin of affine 2-space. The geometric picture of this space is actually a circle: the bottom point representing the number 0; the left and right halves representing negative and positive numbers, repsectively; and the top point representing the number "infinity."
There are a few ways of describing points on the projective line. The formal way of doing so is by using what are called homogenous coordinates. In other words, for any nonzero point (a,b) in affine space, it is surely true that we can find a line through the origin and (a,b). In particular, if a is not zero, then this line takes the form y = (b/a) x where the slope is b/a. Furthermore, any two points (a,b) and (c,d) can actually sit on the same line, in particular whenever c = ka and d = kb for some number k. Thus, we can define homogenous coordinates as the set of points [a : b] for a, b in our field where [a : b] = [ka : kb] by definition, and the point [0 : 0] is not allowed as it doesn't specify any particular line (after all, every line passes through the origin). As is alluded to above, however, this means that whenever a =/= 0, we can take k = 1/a to get [a : b] = [1 : b/a], in other words characterizing each line by its slope. Furthermore, whenever a = 0, we can take k = 1/b to get [0 : b] = [0 : 1]. In other words, the projective line is, as we informally stated above, equivalent to the set of slopes of lines through the origin plus one other point representing the vertical line, the point at "infinity." Since slopes are just numbers in a field, we can add, subtract, multiply, and divide them as we normally do with one exception: the slope of the lines containing [a : b] for any a =/= 0 is b/a, so clearly the line with infinite slope consisting of points [0 : b] implies that b/0 should be infinity. Voila! We can divide by zero now, right? Well... there are two loose ends to tie down. The first is what infinity actually means in this case, since it is among the most misunderstood concepts in mathematics. Normally, when people bandy about phrases such as "infinity isn't a number, just a concept" or "some infinities are different from others" they are usually wrong (but well meaning) and also talking about a different kind of infinity, the ones that arise from cardinalities. Everything in math depends on the context in which it lies, and infinity is no different. You may have heard of the cardinal infinity, the subject of Hilbert's Hotel, describing the size of sets and written primarily with aleph numbers. Similarly, you may also have heard of the ordinal infinity, describing the "place" in the number line greater than any natural number. Our infinity is neither of these: it is to some extent an infinity by name only, called such primarily to take advantage of the intuition behind dividing by zero. It's not "greater" than any other number (in fact, the normal ordering of an ordered fields such as the real numbers breaks down on the projective line), and this is a consequence of the fact that if you make increasingly negative and increasingly positive slopes you end up near the same place: a vertical line. In other words, "negative infinity" and "positive infinity" are the same infinity.
The second loose end is that defining our operations this way is actually somewhat algebraically unsound, at least with respect to the way we think about operations in groups, rings, and fields. As mentioned above, the operation of addition can be lifted to affine space as (a,b) + (c,d) = (a+c,b+d). However, this same operation can't really be used for homogenous coordinates, since [1, 0] = [2, 0] as they lie on the same line (the line with slope 0), but [1, 0] + [1, 1] = [2, 1] while [2, 0] + [1, 1] = [3, 1], and [2, 1] and [3, 1] are not the same line, as they have slopes 1/2 and 1/3, respectively. Dividing by zero isn't even needed to get weirdness here. Luckily, we can simply define new operations by taking inspiration from fractions: b/a + d/c = (bc + ad)/ac, so we can let [a : b] + [c : d] equal [ac : bc + ad] (remembering that homogenous coordinates do to some extent just represent the slope). Luckily, multiplication still works nicely, so we have [a : b] * [c : d] = [ac : bd]. Unluckily, with these definitions, we no longer get a field. In particular, we don't even have an additive group anymore: [a : b] + [0 : 1] = [0 : a] = [0 : 1], so anything plus infinity is still infinity. In other words, infinity doesn't have an additive inverse. Furthermore, despite ostensibly defining infinity as 1/0, the multiplicative inverse of 0, we have that [1 : 0] * [0 : 1] = [0 : 0], by our rules, which isn't defined. Thus, 0 still doesn't have a multiplicative inverse and 0/0 still doesn't exist. It seems like we still haven't really figured out how to divide by zero, after all this. (Once again, if you want to read up on the projective line, which is a special case of projective space, which is a special case of the Grassmannian, in more depth.)
At this point, to really divide by zero properly, we're going to need to bite the bullet and change what dividing really means. Just as we can think of subtraction as adding the additive inverse (i.e. a - b = a + -b where -b was a number), we can start thinking of division as just multiplying by... something, i.e. a/b = a * /b, where /b is something vaguely related to the multiplicative inverse. We can already start doing this in the projective line, where we can define /[a : b] = [b : a], and it works nicely as [a : b] * [b : a] = [ab : ab] = [1 : 1] whenever neither a nor b is zero. This lets us rigorize the statements 1/infinity = 0, infinity/0 = infinity, and 0/infinity = 0, but doesn't really help us do 0/0 or infinity/infinity. Furthermore, note that because 0/0 =/= 1, /[a : b] isn't really the multiplicative identity of [a : b], it's just the closest we can get.
Enter the wheel! If 0/0 is undefined, then we can simply... define it. It worked so nicely for adding in infinity, after all - the picture of the point we added for infinity is taking a line and curling it up into a circle, and I like circles! Surely adding another point for 0/0 would be able to provide a nice insight just as turning a line into the projective line did for us.
So here's how you make a wheel:
You take a circle.
You add a point in the middle.
Yeah that's it. The new point, usually denoted by ⊥, is specifically defined as 0/0, and really just doesn't do anything else. Just like for infinity, we still have that a + ⊥ = ⊥ and a * ⊥ = ⊥ for all a (including infinity and ⊥). It doesn't fit into an order, it doesn't fit in topologically, it is algebraically inert both with respect to addition and multiplication. It is the algebraic formalization of the structure that gives you NaN whenever you fuck up in a calculator and the one use of it both inside and outside mathematics is that it lets you be pedantic whenever your elementary school teacher says "you can't divide by zero" because you can go "yeah you can it's just ⊥ because i've been secretly embedding all my real numbers into a wheel this whole time" (supposing you can even pronounce that).
The wheel is charming to me because it is one of the structures in mathematics where you can tell someone just asked a question of "what if this was true," built some space where it was, and just started toying with it to see what happens. It's a very human and very beautiful thing to see someone go against conventional knowledge and ask "what breaks when you allow 0/0" even if conventional knowledge does tend to be right most of the time. In this sense, perhaps the uselessness of the wheel is the point, that even despite how little ⊥ does from a mathematical lens, some people still took the time to axiomatize this system, to find a list of conditions that were both consistent and sufficient to describe a wheel, and genuinely do actual work seeing how it fits in within the universe of algebraic structures that it stays in.
While a wheel may not be used for much (it might be describable in universal algebra while a field isn't, though I'm not too well versed in universal algebra so I'm not actually entirely sure), every other structure discussed above is genuinely well studied and applicable within many fields inside and outside of math. For more viewpoints on what the projective line (and in general the projective sphere) is used for, some keywords to help you on your way are compactification of a set if you care about the topological lens, the real projective line or the Riemann Sphere if you care more about the analysis side, or honestly the entirety of classical algebraic geometry if that's your thing.
Another structure that might be interesting to look at is the general case of common meadows, an algebraic structure (M, 0, 1, +, -, *, /) where the condition of / being involutive (i.e. /(/x) is not always x) is relaxed, unlike a wheel where it is always involutive. Note that these structures are called meadows because the base structure they worked on is a field (get it? not our best work I promise mathematicians are funnier than this). These structures are at the very least probably more interesting than wheels, though I haven't checked them out in any amount of detail either so who knows, perhaps there isn't much of substance there either.
I love how mathematicians (and probably other scientists (yeah I know math isn't an empirical science)) have a weak Latex compiler in their minds. Sometimes I'll text math people through places that don't support latex and I can just type the code and they'll compile it in their head with little room for error.
Kinda like in the matrix movies where the operators just read the symbols and saw the people they represented instead.
To be fair latex by design is more-or-less just writing the formulas like you would read them, only funny business is with the upper/lower indices which you can follow through the curly brackets
I feel like enough time has passed since Steven Universe ending to say this: inventing your own alter ego and then launching a war against yourself is an iconic move actually. It's like if Batman and Bruce Wayne had public beef except if entire armies were involved. She really Did That. She said "go big or go home" and then went so big that no-one could ever go home, and then changed the fate of the entire galaxy by faking her own death. She slutted it up bisexually and broke countless hearts along the way. Iconic move after iconic move. Non-stop slaying. A queen an icon a legend. No-one does it like her.
nothing funnier to me than when AI does math wrong. like I get why it happens, it's a language model that's treating the numbers you feed it as words rather than integers and then giving you an answer based on how those words typically appear in a block of text instead of actually performing a calculation. but the one thing computers are genuinely incredible at. you fucked up a perfectly good calculator is what you did, look at it it's got hallucinations
i get that it is recreationally fun to whine and hate. i support all whiners and haters and i agree nintendo should be bankrupted and have to sell all its games for negative ninety dollars. but if new mario games are $80 i just think its really easy to not buy new mario games. like when peoplare like "games are 1 squillion dollars" im like okay maybe for you if you want to buy the new zelda or cod the day of release. for Me, video games are like $15. sometimes $0
had a premium (/s) experience yesterday where I saw some older family friends at a cafe and they asked me about what research I was doing and after info-dumping at them for like 15 minutes about GANs and the potential for MASSIVELY expediting MRI scans in conjunction with k-space undersampling I remembered that when some folks ask you to tell them what you're doing they do not actually want to know 😔 I am spoilt by friends and family who let me joyously blather on about this stuff and even though they don't understand it and don't share my interest, they just like to listen to me gabble. If you ever do this for A Neurodiverse (or anyone!!!) in your irl life, please know that they cherish and appreciate you more than words can say. And every infodump is a declaration of trust and affection.
and another thing. I keep seeing fanart of Mattel and Hasbro characters saying “kill all ai artists” which is funny as fuck. Corporate Baby Toy Mascot Steve Says: I Hate The Worker Replacer 3000 Machine!
(Mickey Mouse voice) oh golly gee willikers do I hate when media conglomerates enforce IP legislation to freeze the public domain and make profit out of the stolen labor of their workers!
(Iron man voice) we have to enact violence on anybody who takes something and turns it into insipid regurgitated low brow artwork only designed to make money. repeatedly even (looks at the camera and smirks)
Getting pretty tired of the discourse about aros wanting a separate space to talk about being aro not in the context of asexuality. Both sides are being incredibly annoying because as with everything on this hellsite there is no nuance. One side wants to be completely separate and there are some people who are just being acephobic at this point. But then the other side insist that we can't be separate because we have so much in common (which we do) but completely miss the point that aro, especially non-ace aro, experiences are often talked over.
Wanting a separate space to talk about our experiences outside the context of asexuality is not the same as wanting to communities to be entirely separate
god I would be UNSTOPPABLE if I was capable of consistently initiating tasks. just you wait. you'll be waiting a while but just you wait