r/CasualMath Sep 14 '15

Math IRC channel on Snoonet

12 Upvotes

Hey /r/CasualMath!

I (along with several others) run a math channel on the snoonet irc network called #math. We are somewhat of a hybrid channel for a variety of math subreddits on Reddit.

IRC is a great way to discuss math and get homework help in real time. The channel would be happy to have you!

To connect via webchat: http://webchat.snoonet.org/math (link in sidebar as well)


r/CasualMath 9h ago

Made a mobile puzzle game around finding hidden rules — here's one example, can you crack it?

Thumbnail gallery
2 Upvotes

I've been building a puzzle game called Rule Hunter — each level gives you a

few example pairs and you have to figure out the hidden rule connecting them,

then apply it to solve the final case.

Here's one from the Normal difficulty:

3 → 9

5 → 25

8 → 64

7 → ?

What's the rule, and what's the answer?

(It's a free Android game, link in comments if anyone's curious — didn't want

to make this feel like an ad post.)


r/CasualMath 8h ago

When should a parent consider getting a math tutor?

Thumbnail
1 Upvotes

r/CasualMath 9h ago

this is the reason your clock divides hour into 60 minutes is because Sumerian and Babylonian astronomers counted finger knuckles instead of whole fingers

Thumbnail thehistoricalinsights.page
0 Upvotes

r/CasualMath 5h ago

I built an AI math solver that solves problems fro

Post image
0 Upvotes

r/CasualMath 7h ago

Calculate the Probability

Post image
0 Upvotes

r/CasualMath 2d ago

£1 for a 1/10,000 chance? I like those odds!

Post image
59 Upvotes

4 digits, 0-9. I was volunteering at an animal charity stall the other day, the lovely lady who put this together thought it was a great idea and she genuinely hoped someone would win it. No one did. I didn't have the heart to tell her the actual odds.


r/CasualMath 1d ago

Can you solve this mean, median, mode, and range challenge?

Post image
0 Upvotes

r/CasualMath 2d ago

I made a video about Goldbach's 1730 proof that there are infinitely many primes

Thumbnail youtube.com
1 Upvotes

Second episode of a five part series, each about a different proof


r/CasualMath 2d ago

99% se equivoca con esta operación.

Thumbnail youtube.com
0 Upvotes

r/CasualMath 2d ago

[OC] Modular Projection Sieve: a sublinear Θ(√N/log N) memory algorithm based on Kmin± prime-coprime entanglement over (ℤ/6ℤ)ˣ. Features discrete spectral operator analysis (GOE quantum chaos), Lean 4 formal proofs, and reproducible Python/Numba execution up to N=10⁹.

0 Upvotes

Prime sieving via modular projection: Theta(sqrt(N)/log N) memory. Sieve operator spectrum: primes = null space (lambda=0), excited levels = GOE (discrete Hilbert-Polya). Paper + code (Python/Lean4): https://github.com/NachoPeinador/modular-projection-sieve


r/CasualMath 2d ago

Tricky one

Post image
15 Upvotes

r/CasualMath 2d ago

Average Speed Calculation

Post image
0 Upvotes

r/CasualMath 2d ago

SUMA Y RESTA DE FRACCIONES, paso a paso y sin estres.

Thumbnail youtu.be
1 Upvotes

r/CasualMath 3d ago

Math for fun

Thumbnail gallery
1 Upvotes

(I'm not a mathematician, my math is not that good, but i do my own stuff).

You all know converting decimals to base-2 or higher base (b) systems.

It is boring, so i sat down to make a formula for it(note/ i do not know if it's exit the way i did or not, i just do).

The only thing i do in math like 95% of the time is looking for a pattern, so this is the way i was thinking on how to make a formula to convert decimals into base-2 (Binary):

1- i wrote the first 17 decimal numbers(0 to 16) and their binary values, any one will see that they are all powers of 10, like 5 is 101 ( 100 + 1 or 10² + 10⁰), but i set it like this to make the math have sense, ( 10²(a) + 10¹(b) + 10⁰(c) ).

2- now we can see that it is just a sum of powers of 10 with a coefficient for each power, by setting a = 1, b = 0, c = 1, we will have the sum for 5 in binary as i showed earlier.

3- i did the same thing for other decimal numbers, i have found that the upper bound of the sum must be a function that counts how many powers of 10 must be for a number m to convert it into base-2(or how many digits in a number in base-2) , any number m can be shown as a power of 2 (2^alpha), so m = 2^alpha where 2ⁿ ≤ 2^alpha < 2^(n+1).

For example 5 = 2^alpha where alpha > than 2 slightly.

4- i took that power and did some operations on it, first we need to round it to a natural number by using the floor or ceiling function(round up or down), to deal with the power ( alpha ) itself we need to use the log_2(m) to extract that power, it also can be shown like this log_2(2^alpha).

A- If we're gonna round down ( floor(log_2(m)) ) we need to add 1 to count for the digits, like m = 5, in base_2 101 (3 digits), floor(log_2(5)) = 2 so we add 1.

B- to make math simple and avoid adding one, we can use the ceiling function instead, so f(m) = ceil(log_2(m) is gonna be the upper bound of the sum, for the lower bound i set it to k = 1, and we know from earlier that powers of 10 get smaller and smaller by 1, so it is wiser to make the power of 10 to be f(m) - k.

So the sum looks like this:

Bi(m) = sum(k=1 to f(m)) of ((10)^(f(m)-k)) * (beta_k(m)).

5- the only thing left is the coefficients of each power of 10, in m = 5 we get a = 1, b = 0, c = 1

in m = 4 we get a = 1, b = 0, c = 0

in m = 7 we get a = 1, b = 1, c = 1

Do you see the thing? If we set abcd... As digits, they are just the binary representative of that m = 5,4,7...

So we need an equation that gives us each digit of m in binary as k gets larger by 1, so we can use the floor function ( rounding down ) and modular forms for that ( i hate modular forms ) or a pure algebra for it.

After some looking and testing:

the beta_k(m) = floor(m/(2^(alpha-k)) mod 2

And we are done.

(Note/ the photo i provide have the algebraic beta_k(m) not the mod one, it has f before the () to show floor because my note app doesn't have the symbol for it)

Then i want to move on to base-3, duo to less knowledge in math, i suspect that it needs more that just replacing 2 with 3 (because of other things i worked on), but it turns out it is just replacing numbers, befor that i asked that to an AI and he explains that just replacing works, and that stupid AI generalize the whole thing, i was not hard to do that but i want it to do it.


r/CasualMath 3d ago

How do you calculate a base number from a given percentage?

Post image
0 Upvotes

r/CasualMath 4d ago

I found e new trick 😍

Post image
0 Upvotes

r/CasualMath 4d ago

When you’re afraid of math, you don’t take the wrong turn you take the scenic route through physics 😂

Post image
2 Upvotes

r/CasualMath 3d ago

Can you simplify this inequality? (Stuck on -4x > 8)

Post image
0 Upvotes

r/CasualMath 4d ago

I am 15 years old; I recently worked out a concept in the philosophy of mathematics, only to discover that Professor Freeman Dyson had already articulated it.

Thumbnail
1 Upvotes

My theory is: I will categorize mathematicians worldwide into two major types. The first type is the group of mathematicians who research breadth, and the second type is the group of mathematicians who research depth. If you don't know the true nature of these two groups, I will explain.
The group of mathematicians researching breadth are those who study and discover major branching fields of mathematics, creating incredibly important formulas like e^(iπ) + 1 = 0 or V-E+F=2.
On the other hand, the group of mathematicians researching depth are those who focus their research on just one, two, or a few major branching fields. They create many theorems and formulas, but these do not carry the same monumental weight as the work of the breadth research group. However, like the 7 algebraic identities, the formulas in this group are smaller things used frequently. This group pieces and assembles things together from different places to create difficult, unusual, tricky, and trap problems. Drilling deep down creates many profound things.
But to me, I see that in mathematics nowadays, there are not many people researching breadth anymore; instead, everyone is researching depth. Their ways of solving problems apply several different formulas and theorems together. In the past, there were many mathematicians researching breadth, but now it is entirely depth. Furthermore, I notice that great and famous mathematicians like Gauss, Newton, and Einstein followed a pattern: they together created a few research products of broad scope first, and after that, they shifted to researching and digging deeply into that specific field and its formulas”. Before formulating this theory, I had never read Professor Freeman Dyson’s work, nor did I even know who he was. I have also never studied philosophy. It was only after coming up with this concept that I researched it and discovered a similar theory already existed. I was honestly shocked to find that my thoughts aligned with such a great professor. Even though my theory might not be a 100% match with Dyson’s, I feel incredibly happy knowing that I arrived at a concept so similar to his.
I noticed that Professor Dyson named his theory 'Birds and Frogs,' which sounds much more creative than my naming of 'Breadth and Depth.' I realize Professor Dyson was immensely creative, whereas my own creativity is not as much as his because I am currently struggling with my phone addiction. I have been exposed to phones since I was about 5 years old, and counting up to now, I am really wrestling with it, though I didn't feel as addicted before turning 15.
My passion for mathematics started when I was 13, and I am currently studying with the AoPS (Art of Problem Solving) books. My dream is to become a mathematician specifically, a frog mathematician that has wings to fly.


r/CasualMath 5d ago

Made an interactive washers-vs-shells visualizer

Enable HLS to view with audio, or disable this notification

3 Upvotes

This is for Calculus 2 applications of integration. You can toggle between the two methods and see the graph get recut

I made this for mathpath.learnhub.com
Sometimes the question asks you to use a specific method and will only allow you to see the visual for either washers/disks/shells and the integral setup only accepts one, and sometimes (like the one above) it accepts both answers.


r/CasualMath 5d ago

The Square Scale Problem

4 Upvotes

Find two groups of at least 2 distinct natural numbers such that the sums of their squares are equal, with no number appearing on either side more than once. Find the smallest possible solution.


r/CasualMath 5d ago

Stupid question

0 Upvotes

Whats the value of root I
(If you aren’t a nerd I = root(-1)


r/CasualMath 5d ago

Can you write the equation for this problem?

Post image
0 Upvotes

r/CasualMath 6d ago

Bounded Menger sponge animation (8 recursion levels)

Post image
5 Upvotes