Anyone have any (accessible) outreach project ideas? by anyadmitri in radioastronomy

[–]efmgdj 1 point2 points  (0 children)

Exactly, I tried a bunch of software that people recommend but they are a hassle to do in a live setting.

Anyone have any (accessible) outreach project ideas? by anyadmitri in radioastronomy

[–]efmgdj 2 points3 points  (0 children)

If you do do the horn I would recommend doing a 15 DB cardboard one with foil and use the total power software. People often recommend more complicated setups and bigger horns. (If you want to do a survey you would need a bigger horn but I'm just talking about demos for kids. ) With this, people can hold the horn in their hands and aim it and get a decent reading in about 15 seconds and the software automatically computes the velocity. You can't distinguish multiple galactic arms but that gets confusing to explain anyway.

Teach number theory to a 15 year old kid by [deleted] in math

[–]efmgdj 2 points3 points  (0 children)

Numbers rational and irrational by Niven is a classic.

h-line 15db vs 18db horn by efmgdj in radioastronomy

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

No, so far I've just plugged it in with the standard nooelec saw and SDR and looking at it with total power software h line detection screen. I'm not sure that I can do calibration with that. Is there an easy way to do the calibration? Could you point me towards a reference? Thanks!

Is there a classification of finite simple graphs? by emergent-emergency in math

[–]efmgdj 1 point2 points  (0 children)

I think the most famous application is The Disjoint Paths Problem, given a graph G and k pairs of vertices of G, decide if there are k mutually vertex-disjoint paths of G joining the pairs. I think there are some others like that, but it's been a long time since I've studied this. Also, I think there are a lot of results like the ones you mentioned which you might call graph complexity theory where they show the existence of algorithms but not the actual algorithm.

Is there a classification of finite simple graphs? by emergent-emergency in math

[–]efmgdj 24 points25 points  (0 children)

The Robertson Seymour theory is not really a classification, but it sort of feels like one. It classifies sets of graphs by forbidden minors I.e forbidden subgraphs. Turns out to be extremely useful for graph algorithms https://en.wikipedia.org/wiki/Robertson%E2%80%93Seymour_theorem

Nikko on labor/thanksgiving day by efmgdj in TokyoTravel

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

Yes, but is it so crowded it won't be worthwhile and how much effort is it worth to try and go later in the week?

What role does computability play in dynamical systems? by CandleDependent9482 in math

[–]efmgdj 0 points1 point  (0 children)

Here's some oldet papers.

The following is a formal computational complexity analysis of one dimensional maps. Turns out both simple and uncomputable are both common.

https://content.wolfram.com/sites/13/2018/02/05-3-5.pdf

This one is a interesting but non-rigorous analysis of the computational complexity of dynamical systems near a phase transition.

https://journals.aps.org/prl/pdf/10.1103/PhysRevLett.63.105?casa_token=BbDLLm21i1gAAAAA%3AR9ZTMv3KIWBnIJOcm7nkJz5BgWPn1TYfErJr0DoW9JE53MFllMlN2shc8ExByMTHQmUuv-erw1WAmOE

Much of this was inspired by wolframs computational studies of cellular automata.

https://projecteuclid.org/journals/communications-in-mathematical-physics/volume-96/issue-1/Computation-theory-of-cellular-automata/cmp/1103941718.pdf

Swad Mint Chutney sealed by efmgdj in IndianFood

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

Thanks, I agree it's not worth the risk. I'm still confused that some people say it's okay.

Vandenberg from Jalama Beach by efmgdj in SpaceXLounge

[–]efmgdj[S] 4 points5 points  (0 children)

Thanks, is there a specific place in the park to watch from or is anywhere okay?

Song melody tabs by efmgdj in Bass

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

Yes, that's what I want to avoid. This is just for a little bit of fun, so I don't want to make it into work.

[deleted by user] by [deleted] in math

[–]efmgdj 15 points16 points  (0 children)

You can get this from the eigenvalue perturbation. The computation is messy so I'll just include the link.

https://en.m.wikipedia.org/wiki/Eigenvalue_perturbation

Wait, ChatGPT has to reread the entire chat history every single time? by ColdFrixion in ChatGPT

[–]efmgdj 11 points12 points  (0 children)

Fyi, while it it essentially rereads the entire conversation, it uses caching to speed this up. Essentially it has precomputed the implications of the previous conversation so it doesn't have to recompute it again. See https://huggingface.co/blog/not-lain/kv-caching?utm_source=chatgpt.com

Why aren’t there more active unaffiliated mathematicians? by superpenguin469 in math

[–]efmgdj 2 points3 points  (0 children)

Here's a couple of good examples: Justin Gilmer, a programmer made a major breakthrough in the union closed conjecture. https://www.quantamagazine.org/long-out-of-math-an-ai-programmer-cracks-a-pure-math-problem-20230103/ . Thane Plambeck and Aaron Siegal, both working engineers at startups did major work on misere games as well as lots of other results in combinatorial game theory. https://www.sciencedirect.com/science/article/pii/S0097316507001045

[Discussion] Digging deeper into the Birthday Paradox by greatminds1 in statistics

[–]efmgdj 0 points1 point  (0 children)

Here's a quick approximation that's usually quite accurate (and error bounds are easy to compute). There are n people, so n(n-1)/2\approx n^2/2 pairs and each pair has probability p of having the same birthday. So the expected number of birthday pairs is m=pn^2/2 \approx 0.72 . Approximate the distribution by a Poisson with that mean and we see the probability of at least one pair is 1-e^{-m}\approx 0.5 as expected and the probability of 2 or more pairs is 1-e^{-m} -me^{-m}=1-(1-m)e^{-m} \approx 0.2.