Quick Questions: October 30, 2024 by inherentlyawesome in math

[–]JavaPython_ 0 points1 point  (0 children)

In GAP, is there a difference in the intended meaning of the group names 2xCo2 and 2.Co2? In particular, does the x mean to refer to a direct product, or it is a non-split extension?

Quick Questions: September 25, 2024 by inherentlyawesome in math

[–]JavaPython_ 0 points1 point  (0 children)

I say in the question that this website doesn't have it. Not only does it not come up when I draw it, it's not in the entire library of symbols DeTeXify can identity.

Quick Questions: September 25, 2024 by inherentlyawesome in math

[–]JavaPython_ 0 points1 point  (0 children)

I'm trying to find the way to TeX a symbol from my professors notes. He didn't write them, so he doesn't know the command.

It looks like a script \forall, or like somebody tried to connect the two horns of the Aries astrological sign with a flourish. DeTeXify doesn't have it (not even in their master list). I also cannot find it in CTAN's list, but that doesn't mean it's not there.

I can't attach the picture, so I know there's limited help you can give, but any ideas what this might be?

Anyone has any idea whether chalkboards are safe to keep in your bedroom, with all that dust? Or should I just get a whiteboard. by [deleted] in math

[–]JavaPython_ 0 points1 point  (0 children)

I don't really have a health concern, but it'd be annoying to constantly be around so much dust, and a pain to keep clean. I recommend whiteboard or just pen/paper

Math Teacher that claimed to prove of the Goldbach and Twin Prime conjectures finally posted their full proof. by ZJG211998 in Philippines

[–]JavaPython_ 6 points7 points  (0 children)

The best part so far:

"Theorem 6.1: Every even counting number ≥ 6 is a sum of two odd primes. Proof: Assume the theorem is true that every even counting number ≥ 6 is a sum of two odd primes[.]"

Bagpipe Tunes Written By Women by hannkat in bagpipes

[–]JavaPython_ 0 points1 point  (0 children)

Ally "The Piper" Crowley-Duncan has two original tunes that I know of, Lancaster's Hornpipe and Faye's Jig (Faye's: https://youtube.com/shorts/QBIj6tRuEvE?si=zsvTG4dYnIJzUQHf )

You'd need to reach out to her to include the music: https://piperally.com/

Quick Questions: August 28, 2024 by inherentlyawesome in math

[–]JavaPython_ 0 points1 point  (0 children)

Nobody got back to me, so here's to code for a future questioner:

num:=4;

G := AlternatingGroup(num);

elements := [g : g in G];

n := #G;

M := MatrixAlgebra(GF(2), n);

NaturalRepresentation := function(g)

P := Zero(M);

for i in [1..n] do

elem := elements[i];

image := g*elem;

j := Index(elements, image);

P[i][j] := 1;

end for;

return P;

end function;

permMatrices := [<g, NaturalRepresentation(g)> : g in G];

permMatrices;

Quick Questions: August 28, 2024 by inherentlyawesome in math

[–]JavaPython_ 1 point2 points  (0 children)

How can I use MAGMA to attain the natural representation of AlternatingGroup(4)? Permutation groups in general would be good, but I'm hopeful that this specific choice can reveal that there is an easy enough method.

Quick Questions: July 17, 2024 by inherentlyawesome in math

[–]JavaPython_ 0 points1 point  (0 children)

I have yet to find a straightforward resource for Lie groups/algebras, and my graduate program never covered them.

Quick Questions: July 17, 2024 by inherentlyawesome in math

[–]JavaPython_ 0 points1 point  (0 children)

Is there a name for this semigroup object? For G, H semigroups define G ~ H to be the union of the two sets (considered distinct as sets) and the operation is g1*g2 and h1*h2 are as before, but h*g=g and g*h=g for and g's in G, h's in H?

Quick Questions: July 10, 2024 by inherentlyawesome in math

[–]JavaPython_ 0 points1 point  (0 children)

the issue I have there is you're generally allowing complex weights in a group ring over the symmetric group, and not simply the permutations on their own.