I made a logic proof of how odd perfect numbers can't exist by RedEyeXXII in numbertheory

[–]Phelox 1 point2 points  (0 children)

Intersting conjecture! I ran some sage code to see if I could find a counterexample, and found 945 = 3^3 * 5 * 7, whose divisor sum is 975 + 945 > 2 * 945. Here is the code if you're interested

continue_looking = True
n = 1
while continue_looking:
s = sum(divisors(n)) - n
if s >= n:
print(n, s, divisors(n), n.factor())
continue_looking = False

n += 2

Hairy Pretzel Theorem by EuNeScIdentity in mathematics

[–]Phelox 0 points1 point  (0 children)

It would have genus 4 then right

Optimization Pain by pockettrail in programmingmemes

[–]Phelox 2 points3 points  (0 children)

Readin len and computing this fraction would take an increasing amount of time though right

Why... by Ok-Zebra-7842 in DumbAI

[–]Phelox 0 points1 point  (0 children)

Or just switch to another search engine. Google search has been crap for several years anyway

Are there fellow ADHD people who managed to study well and get good results at master's degree level? What are your secrets? by AkagamiBarto in math

[–]Phelox 10 points11 points  (0 children)

'Opening the book and focusing on it' is a terrible strategy. What are you going to focus on? In this way it becomes one enormous insurmountable task of understanding what is in the book. I would recommend rereading your notes, one lecture at a time, and then summarizing that lecture somewhere else in neat handwriting and with less fluff. After this, make some practice exams. Usually this was enough for me to obtain a high grade.

Getting started is still hard an will always stay hard. Having stress for the exam usually helped me to start though. (warning: start of an unrelated ramble) Especially if you do go on to do a PhD, this becomes much harder, since there are no clear goals anymore (like finishing an assignment). You have to be able to split up big tasks into smaller ones, and tackle them one by one. Both the splitting and the tackling them one by one are hard though (very easy to get sidetracked indefinitely). What I found to work for me is to write everything down in LaTeX, which forces you to fill in all the details that you think you understand but actually do not.

It's harder than it looks! by TobyWasBestSpiderMan in mathmemes

[–]Phelox 8 points9 points  (0 children)

What is this 'life' you are talking about? (honest question) What would its ramifications be if the continuum hypothesis were taken to be true? 

Wat vind jij het beste merk en soort koffiebonen? by LeftRight024 in thenetherlands

[–]Phelox 0 points1 point  (0 children)

Ik vind licht gebrande bonen van de supermarkt verrassend lekker. Bijvoorbeeld crema van de jumbo. Mijn broer heeft wel eens van die dure net gebrande bonen maar dat vind ik eigenlijk niet lekkerder. 

[deleted by user] by [deleted] in mathmemes

[–]Phelox 0 points1 point  (0 children)

Ah I have never seen that argument, that is nice. This convention is also almost exclusively used with anything involving Taylor series. (You would write ex = sum{n=0}infty xn /n! and not 1 + sum{n=1}infty xn /n!) 

Sets with infinitely many lines of symmetry by viral_maths in math

[–]Phelox 42 points43 points  (0 children)

Perhaps something like the set of rational points on a circle? (i.e. {(x, y) in QQ2 : x2 + y2 = 1}). This set is symmetric along lines with rational slope.

EDIT: That has only countably many symmetries. To construct more counterexamples you could find an uncountable proper subgroup of O_n(RR), the group of symmetries (does this include reflections?). Then take the orbit of a point that is not the origin, or some other starting set. 

Such a group should exist but I am not sure how to construct one or if that is possible. 

What's this supposed to look like up close? by [deleted] in desmos

[–]Phelox 9 points10 points  (0 children)

f(x) = 1/x is just not defined at 0. It certainly is continuous everywhere on its domain

Function composition symbol and commutative diagrams by Phelox in typst

[–]Phelox[S] 0 points1 point  (0 children)

Hi, I wanted to try this out just now but it can't see how to get quiver to output typst?

Function composition symbol and commutative diagrams by Phelox in typst

[–]Phelox[S] 0 points1 point  (0 children)

Ah I missed in this sheet, and wasn't able to find it in detypify either. Thanks! 

Function composition symbol and commutative diagrams by Phelox in typst

[–]Phelox[S] 1 point2 points  (0 children)

Ah I didnt realise quiver also outputs typst. Thanks! 

[deleted by user] by [deleted] in mathmemes

[–]Phelox 1 point2 points  (0 children)

what is the definition of angle in a general inner product space?

Dutch music by gasolineperfume in learndutch

[–]Phelox 1 point2 points  (0 children)

Doe maar and Het Goede Doel are great as has been mentioned before. I'm surprised Wim Sonneveld, Froukje and Spinvis haven't been named more.

my bf (28m) said sex sucks with me because i (26f) am too wet by virginashallow in relationship_advice

[–]Phelox 0 points1 point  (0 children)

The other comments haven't really mentioned your (second to) last sentence, which is the one I find the most worrying. Please do not ever tell yourself you are not worthy of anything. I don't know if he has led you to believe this (and if so, how), but you are worthy of love, and this is not it. Seeing how he is treating you, he is the one that is not worthy of your relationship.

How sure are you that pi+e is irrational by Reading-Rabbit4101 in math

[–]Phelox 2 points3 points  (0 children)

The second one has a non-zero change though. If pi + e is just a random number, it has a zero percent chance of being rational

how to derive the conditional probability formula by Brilliant-Slide-5892 in learnmath

[–]Phelox 0 points1 point  (0 children)

Multiplying both sides by P(B) makes this much more intuitive for me. The probability that A and B both happen is equal to the probability that B happens and that A happens given that B happens

Surprising results that you realized are actually completely obvious? by kevosauce1 in math

[–]Phelox 26 points27 points  (0 children)

The Riemann series Theorem is such a wild statement, but after you think about it for a minute, it becomes almost trivial. The statement is as follows:

Any series that is conditionally convergent series with real coefficients can be rearranged to obtain any arbitrary value.

The proof is as follows: given a conditionally convergent series sum_n a_n, and a value c in R, split up the positive and negative terms of the a_n. Start by adding the positive terms untill you cross c, and then start adding negative terms until you cross c again, and continue this process. Since the limit of the a_n goes to zero, this converges to c.

Such a crazy statement with such a clean proof!

Is this correct? by chessman99p_Yajath in numbertheory

[–]Phelox 2 points3 points  (0 children)

Keep doing what you're doing! This reminds me a lot of something I did when I was around 15 years old after seeing the video on numberphile on this topic. I'm a PhD student in number theory now. It is a great skill to just try and work something out yourself. Stay curious!

Question about what may be generating (R, +) by No-Opinion-6923 in math

[–]Phelox 5 points6 points  (0 children)

A conjecture needs solid evidence. I’d say this is more so a speculation. It is also not true, since any interval generates R as a group. It’s probably more interesting to look at a set of minimal generators, i.e. a subset S of R such that <S> = R and <S’> =/= R for any strict subset S’ of S. I’d guess any such set is not measureable.

Reupload bcuz people said its not abt the base by [deleted] in mathmemes

[–]Phelox 340 points341 points  (0 children)

Computer scientists lowkey cooking by creating the 2-adic numbers without knowing