User james - MathOverflow most recent 30 from http://mathoverflow.net 2013-05-25T15:57:29Z http://mathoverflow.net/feeds/user/1392 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://mathoverflow.net/questions/81878/nucleus-and-center-of-certain-non-power-associative-algebras/81889#81889 Answer by James for Nucleus and center of certain non power associative algebras James 2011-11-25T14:32:44Z 2011-11-25T17:26:50Z <p>I think the following example works. Take an algebra $A$ (say, over $\mathbb{Z}$) with basis $\{ a, b, c \}$ and with products defined by putting $cb = c^2 = b$, and all other products of basis elements equal to $a$. Then $(cc)c = bc = a$, while $c(cc) = cb = c$, so $A$ is not power-associative and non-commutative. But the centre and nucleus are equal (to $\mathbb{Z}a$).</p> http://mathoverflow.net/questions/78910/computer-algebra-system-for-calculation-of-characteristic-polynomial-of-sparse-ma/79023#79023 Answer by James for Computer algebra system for calculation of characteristic polynomial of sparse matrix James 2011-10-24T20:50:21Z 2011-10-26T07:34:59Z <p>In Maple 15 I'm getting times of about 12 seconds on decent, fairly recent hardware. I used</p> <pre><code>with( LinearAlgebra ): N := 10^4: A := RandomMatrix( N, N, 'generator' = 0 .. 1, 'density' = evalf( 1 / N ) ): time( Modular:-CharacteristicPolynomial( 2, A, t ) ); </code></pre> <p>for testing. The fact that it is sparse is important. Runtimes for dense examples were much, much longer.</p> <p>EDIT: It seems that if you use a sparse matrix data structure, and smaller (one byte) integers, this can be done much more efficiently. If you have access to Maple 14 or 15, try this (and note that, here, $N = 10^5$):</p> <pre><code>with( LinearAlgebra ): N := 10^5: A := RandomMatrix( N, N, 'generator' = 0 .. 1, 'density' = evalf( 1 / N ), 'storage' = 'sparse', 'datatype' = 'integer'[1] ): time( CharacteristicPolynomial( A, t ) mod 2 ); </code></pre> <p>On my machine, I get the answer in less then 0.5 seconds. (It took longer - about 0.75 seconds - to construct the matrix!) Memory used was about 45.3 Mb, but going back to size $10^4\times 10^4$ reduces the memory to 2.7 Mb. I did examples with $N = 10^6$ in about 5 seconds and 220 Mb of memory.</p> <p>Anyway, it's clear from the various answers that there are computer algebra systems out there that can handle the computations you are interested in (at least Maple and Fermat, and likely others), so you should be in a position to choose whichever system is most convenient for you.</p> http://mathoverflow.net/questions/77845/is-there-a-residually-nilpotent-one-relator-group-that-is-not-residually-a-finite Is there a residually nilpotent one-relator group that is not residually a finite p-group for any prime p? James 2011-10-11T18:20:16Z 2011-10-11T20:52:27Z <p>This question is not directly related to, but was inspired by, <a href="http://mathoverflow.net/questions/77583/is-the-free-product-of-arbitrarily-many-copies-of-mathbbz-and-mathbb" rel="nofollow">this question</a>. We know that a finitely generated residually nilpotent group is residually of prime-power order. However, we may need to use different primes for different elements. Classes of groups for which residual nilpotence forces there to be a single prime that will do for all elements (i.e., for which the group in question must be residually $p$-finite, for some $p$) seem to be interesting, and include, for instance, free products of cyclic groups.</p> <p><b>Is there a (non-cyclic) one-relator group that is residually nilpotent, but is not residually a finite $p$-group, for any prime number $p$?</b></p> <p>Such a group must be torsion-free, with trivial centre.</p> http://mathoverflow.net/questions/77583/is-the-free-product-of-arbitrarily-many-copies-of-mathbbz-and-mathbb/77666#77666 Answer by James for Is the free product of arbitrarily many copies of `${\mathbb{Z}}$` and `${\mathbb{Z}}/2$` residually nilpotent? James 2011-10-10T06:36:38Z 2011-10-10T22:04:49Z <p>Mark Sapir has already given you a definitive answer, but I think it is interesting to note that his argument generalises to show something stronger. A finitely-generated non-trivial free product of groups is residually nilpotent only if it is $p^{\prime}$-torsion-free, for some prime $p$. (Here, $p^{\prime}$ denotes the set of primes not equal to $p$ so, in this case, we are allowed only $p$-torsion.) For, in a finitely-generated residually nilpotent group, elements of finite coprime order commute. And, if $G = A\ast B$ is such a free product (with $A\neq 1\neq B$), and $G$ is not $p^{\prime}$-torsion-free, for any prime $p$, there are distinct primes $p$ and $q$, and elements $u$, of order $p$, and $v$, of order $q$ in $G$. These may be taken (up to conjugation) to be members of $A\cup B$. Now, if $u$ and $v$ belong to different free factors ($A$ or $B$) then they cannot commute, so it must be that $u$ and $v$ belong to the same factor, say $A$. But then, taking a non-trivial element $b$ in $B$ and forming the conjugate $w = b^{-1}vb$, we get an element of order $q$ which again does not commute with $u$. (The commutator $[u,w] = u^{-1}b^{-1}v^{-1}bub^{-1}vb\neq 1$, by the normal form theorem for free products.) This again contradicts the fact that elements of coprime order commute.</p> http://mathoverflow.net/questions/74162/formally-undecidable-problems-on-finitely-presented-quandles Formally undecidable problems on finitely presented quandles James 2011-08-31T14:39:15Z 2011-08-31T14:39:15Z <p>In the literature, one sometimes sees the claim that finitely presented quandles (in particular, knot quandles) are "hard to deal with". Hence, a great deal of effort has gone into studying finite quandles and counting homomorphisms onto them, and so on. However, I have not yet come across any theorems that state formal undecidability results for finitely presented quandles similar to those for finitely presented groups. In fact, I have yet to see any formulation of such problems. (For instance, a theorem stating that the isomorphism problem is undecidable for finitely presented quandles.)</p> <p>Do such results exist in the literature and, if so, could someone please provide references?</p> <p>(Asked previously <a href="http://math.stackexchange.com/questions/59285/formally-undecidable-problems-on-finitely-presented-quandles" rel="nofollow">here</a> on math.stackexchange, without response.)</p> http://mathoverflow.net/questions/18411/do-the-baumslag-solitar-groups-occur-in-nature Do the Baumslag-Solitar groups occur in nature? James 2010-03-16T18:53:51Z 2011-08-31T08:01:35Z <p>The <a href="http://projecteuclid.org/DPubS?service=UI&amp;version=1.0&amp;verb=Display&amp;handle=euclid.bams/1183524561" rel="nofollow" title="G. Baumslag and D. Solitar, Some two-generator one-relator non-Hopfian groups, Bull. Amer. Math. Soc. Volume 68, Number 3 (1962) 199-201">Baumslag-Solitar groups</a> $BS(m,n) = \langle b,s\mid s^{-1}b^ms = b^n\rangle$, with $mn\neq 0$, are important examples (more often, counter-examples) in group theory. They are residually finite if, and only if, either $m$ and $n$ are equal in absolute value, or one of $m$ and $n$ has absolute value equal to $1$. In that case, they are Hopfian, and also when $m$ and $n$ have the same prime divisors. Otherwise, they are non-Hopfian. For $m=n$, we get examples of one-relator groups with non-trivial center. The group $BS(2,2)$ is an example in which the Howson property fails.</p> <p>I can only recall having seen these groups defined by means of a presentation. I would like to know whether these groups (apart from the obvious special cases such as the metabelian ones) can be realized by some other fairly elementary and concrete mechanism. My question is:</p> <blockquote> <p>Does $BS(m,n)$ occur "in nature"?</p> </blockquote> <p>(For example, the Sanov matrices $\left(\begin{matrix} 1&amp;2 \cr 0&amp;1 \end{matrix}\right)$ and $\left(\begin{matrix} 1&amp;0 \cr 2&amp;1\end{matrix}\right)$ generate a free subgroup of $SL(2,\mathbb{Z})$, so I would say that free groups occur "in nature".)</p> <p>Obviously, since the Baumslag-Solitar groups are often non-Hopfian, they cannot be constructed as groups of matrices. But, perhaps there is some other concrete realization of these groups.</p> <p>If there isn't a general construction, it would still be useful to get a concrete realization for the non-Hopfian group $BS(2,3)$.</p> http://mathoverflow.net/questions/70990/torsion-in-triangle-groups/70997#70997 Answer by James for Torsion in triangle groups James 2011-07-22T15:32:33Z 2011-07-22T15:32:33Z <p>According to the survey article <a href="http://iopscience.iop.org/0036-0279/31/5/R18" rel="nofollow">H. Zieschang, On Triangle Groups, Russian Mathematical Surveys (October 1976), 31 (5), pg. 226-233</a>, this fact is proved in the Russian paper, <a href="http://mi.mathnet.ru/eng/umn/v21/i3/p195" rel="nofollow">H. Zieschang, “Discrete groups of plane motions and plane group images”, Uspekhi Mat. Nauk, 21:3(129) (1966), 195–212</a>. I've been unable to locate an English translation of the latter. However, Fine and Rosenberger discuss it in Chapter 4 of their book (see Theorem 4.3.2).</p> http://mathoverflow.net/questions/61116/lie-algabra-of-symmetric-group/61470#61470 Answer by James for Lie algabra of symmetric group James 2011-04-12T21:04:52Z 2011-04-12T21:04:52Z <p>For a well-known infinite example, there is a result, due to Labute ("On the descending central series of groups with a single defining relation", J. Algebra 14 (1970), 16--23) which asserts that the Lie ring associated to a one-relator group can be presented as a Lie ring with a single defining relator.</p> http://mathoverflow.net/questions/60457/elementaryshortuseful/60605#60605 Answer by James for Elementary+Short+Useful James 2011-04-04T20:41:52Z 2011-04-04T20:41:52Z <p>The <a href="http://en.wikipedia.org/wiki/Pigeonhole_principle" rel="nofollow">Pigeonhole Principle</a></p> http://mathoverflow.net/questions/44326/most-memorable-titles/44403#44403 Answer by James for Most memorable titles James 2010-11-01T02:08:06Z 2010-11-01T02:08:06Z <p>John Stallings' <a href="http://math.berkeley.edu/~stall/notPC.pdf" rel="nofollow">"How not to prove the Poincare Conjecture"</a> is lovely.</p> http://mathoverflow.net/questions/44326/most-memorable-titles/44375#44375 Answer by James for Most memorable titles James 2010-10-31T20:32:44Z 2010-10-31T20:32:44Z <p>My favourite : <a href="http://plms.oxfordjournals.org/content/s3-46/1/117.abstract" rel="nofollow">"My Graph"</a>, by H.S.M. Coxeter.</p> http://mathoverflow.net/questions/22299/what-are-some-examples-of-colorful-language-in-serious-mathematics-papers/38883#38883 Answer by James for What are some examples of colorful language in serious mathematics papers? James 2010-09-15T21:40:37Z 2010-09-15T23:08:27Z <p>I like the following footnote that appears in a <a href="http://onlinelibrary.wiley.com/doi/10.1002/cpa.3160210504/abstract" rel="nofollow">paper</a> by G. Baumslag:</p> <blockquote> <p>"I thank Graham Higman for allowing the dust of Oxford to rest on my unopened manuscript for thirty months."</p> </blockquote> http://mathoverflow.net/questions/4994/fundamental-examples/5462#5462 Answer by James for Fundamental Examples James 2009-11-13T23:58:05Z 2010-06-22T06:18:00Z <p>Answered by <strong><a href="http://mathoverflow.net/users/1392/james" rel="nofollow">James</a></strong>: The <a href="http://en.wikipedia.org/wiki/Platonic_solid" rel="nofollow">Platonic solids</a>. They are fundamental, collectively and individually, to many areas of mathematics.</p> http://mathoverflow.net/questions/2437/is-there-an-image-for-you-that-epitomizes-mathematics/4012#4012 Answer by James for Is there an image for you that epitomizes mathematics? James 2009-11-03T22:31:30Z 2010-06-02T16:19:11Z <p><a href="http://en.wikipedia.org/wiki/The_School_of_Athens" rel="nofollow">Raphael's <em>School of Athens</em></a></p> <p><img src="http://upload.wikimedia.org/wikipedia/commons/9/94/Sanzio_01.jpg" height="450"> </p> http://mathoverflow.net/questions/24913/quick-proofs-of-hard-theorems/25010#25010 Answer by James for Quick proofs of hard theorems James 2010-05-17T13:56:21Z 2010-05-21T03:37:18Z <p>The Nielsen-Schreier subgroup theorem: subgroups of free groups are free. This has a very quick proof using the fact that a group is free precisely when it acts freely and without inversions on a tree.</p> http://mathoverflow.net/questions/24132/what-are-examples-of-mathematical-concepts-named-after-the-wrong-people-stigler/24149#24149 Answer by James for What are examples of mathematical concepts named after the wrong people? (Stigler's law) James 2010-05-10T20:14:11Z 2010-05-10T20:14:11Z <p>Burnside's Lemma, which asserts that the number of orbits of a group action is the average number of fixed points, was known to Cauchy. Burnside himself even attributed it to Frobenius in his book.</p> http://mathoverflow.net/questions/23898/is-a-non-abelian-free-group-fully-residually-a-finite-non-abelian-simple-group Is a non-abelian free group fully residually a finite non-abelian simple group? James 2010-05-07T21:12:19Z 2010-05-08T08:39:11Z <p>It is well known that a non-abelian free group is residually a finite simple group. Katz and Magnus proved, in fact, that non-abelian free groups are residually alternating and residually $PSL_{2}$. S. J. Pride has some nice results along these lines as well. The best result that I know of is the theorem of Weigel that can be formulated as follows. If $\mathfrak{X}$ is a group-theoretic class containing an infinite set of pairwise non-isomorphic finite non-abelian simple groups, then every non-abelian free group is residually an $\mathfrak{X}$-group.</p> <hr> <p>My question is this:</p> <blockquote> <p>Is a non-abelian free group fully residually a finite non-abelian simple group?</p> </blockquote> <p>It seems likely that the answer to such an obvious question is known, but I have not been able to find it in the literature.</p> <p>I should probably add that I suspect we can probably replace "finite non-abelian simple" with "alternating", but I haven't yet given any thought to the other infinite series. I'd like to learn whether anything is known before spending more time on this.</p> http://mathoverflow.net/questions/23748/where-on-the-internet-i-can-find-database-of-graphs/23893#23893 Answer by James for Where on the internet I can find database of graphs? James 2010-05-07T20:19:59Z 2010-05-07T20:19:59Z <p>Maple 13 or newer has a GraphTheory package that has a graph generator which allows you to generate all non-isomorphic graphs satisfying various criteria. You can use that to produce graphs and export them in various formats. In addition, you can produce random graphs using this package.</p> http://mathoverflow.net/questions/5499/which-mathematicians-have-influenced-you-the-most/19739#19739 Answer by James for Which mathematicians have influenced you the most? James 2010-03-29T16:51:16Z 2010-03-29T16:57:07Z <p><strong>Who:</strong> H. S. M. Coxeter.</p> <p><strong>When:</strong> When I was an undergraduate.</p> <p><strong>Why:</strong> Not only was he a prince among mathematicians, but he was also a gentleman of the first rank. Several of his books also inspired me. Moreover, by transitivity, he was (for me) clearly the most influential.</p> http://mathoverflow.net/questions/5372/dimension-leaps/18710#18710 Answer by James for Dimension Leaps James 2010-03-19T02:54:09Z 2010-03-19T02:54:09Z <p>Polya's theorem on random walks: a simple random walk on $\mathbb{Z}^n$ is recurrent for $n = 1$ and $n = 2$, but is transient for $n \geq 3$.</p> http://mathoverflow.net/questions/18558/does-every-right-angled-coxeter-group-have-a-right-angled-artin-group-as-a-subgro/18596#18596 Answer by James for does every right-angled coxeter group have a right-angled artin group as a subgroup of finite index? James 2010-03-18T14:57:38Z 2010-03-18T14:57:38Z <p>You might be thinking of this paper:</p> <p><a href="http://linkinghub.elsevier.com/retrieve/pii/S0022404999001759" rel="nofollow">Michael W. Davis and Tadeusz Januszkiewicz, Right-angled Artin groups are commensurable with right-angled Coxeter groups, J. Pure Applied Algebra, 153, No. 3 (2000), 229-235.</a></p> http://mathoverflow.net/questions/18433/is-there-a-non-trivial-topological-group-structure-of-mathbbz/18435#18435 Answer by James for Is there a non-trivial topological group structure of $\mathbb{Z}$? James 2010-03-16T22:25:57Z 2010-03-16T22:25:57Z <p>Yes. Take, for example, the subgroups $p^k\mathbb{Z}$, for $k>0$ and a fixed prime $p$, as a basis of neighborhoods of the identity.</p> http://mathoverflow.net/questions/15595/math-keyboard-does-it-exist/15613#15613 Answer by James for Math keyboard: does it exist ? James 2010-02-17T19:21:27Z 2010-02-17T19:21:27Z <p>Does an APL keyboard (e.g., <a href="http://www.aplusdev.org/keyboard.html" rel="nofollow">http://www.aplusdev.org/keyboard.html</a>) qualify?</p> http://mathoverflow.net/questions/14314/algebraic-topologies-like-the-zariski-topology/14322#14322 Answer by James for "Algebraic" topologies like the Zariski topology? James 2010-02-05T23:01:20Z 2010-02-05T23:12:50Z <p>Given a group theoretic class $\mathfrak{X}$ (e.g., finite groups, soluble groups, etc.), to each group $G$ one can associate the pro-$\mathfrak{X}$ topology on $G$ by taking as a basis of neighbourhoods of the identity the collection of normal subgroups $N$ of $G$ for which the quotient group $G/N$ belongs to $\mathfrak{X}$. A group is residually an $\mathfrak{X}$-group precisely when this topology is Hausdorff. (To get an actual topology, $\mathfrak{X}$ has to be hereditary and closed under (finite) direct products.)</p> http://mathoverflow.net/questions/11517/computer-algebra-errors/11578#11578 Answer by James for Computer Algebra Errors James 2010-01-12T20:16:06Z 2010-01-12T20:16:06Z <p>(I haven't sufficient points to post a comment to Leonid Kovalev's reply.)</p> <p>The problem in the numerical integration example is that numerical integration in Maple is done using Int, not int. The correct command should be</p> <p>evalf(Int(sin(x)^44,x=0..sqrt(44)));</p> <p>which should produce consistent results (and much more quickly).</p> http://mathoverflow.net/questions/7155/famous-mathematical-quotes/8394#8394 Answer by James for Famous mathematical quotes James 2009-12-09T22:59:40Z 2009-12-09T22:59:40Z <p><strong>"Why is this a good idea?"</strong></p> <ul> <li>Bill Ralph, on the most important question to ask yourself when doing (or studying) mathematics.</li> </ul> http://mathoverflow.net/questions/5450/cocktail-party-math/5465#5465 Answer by James for Cocktail party math James 2009-11-14T00:08:18Z 2009-11-14T00:08:18Z <p>I have successfully used examples involving covering chessboards with dominoes. I start with the question about whether you can tile a chessboard with opposite corner squares removed. If this gets any interest, I might go on from there. This leads people to the idea that mathematics is not just about numbers, but is actually about thinking logically about pretty much anything.</p> http://mathoverflow.net/questions/5372/dimension-leaps/5458#5458 Answer by James for Dimension Leaps James 2009-11-13T23:24:07Z 2009-11-13T23:24:07Z <p>The symmetric group has an outer automorphism only in degree 6.</p> http://mathoverflow.net/questions/2630/infinite-subgroups-with-finite-index/3972#3972 Answer by James for Infinite subgroups with finite index James 2009-11-03T17:52:29Z 2009-11-03T22:48:58Z <p>I often try to show that a subgroup contains another subgroup known to be of finite index. There are various refinements. One technique is to prove that your subgroup contains an intersection of a finite number of subgroups, each of which is known to have finite index. For example, suppose you know that the central quotient G/Z(G) of a group G is finite. (One way to show this is to show that G is a union of finitely many abelian subgroups.) If it is too hard to show that your subgroup H contains the centre, but you can show that H contains the intersection of Z(G) with the derived subgroup [G,G] of G, then the index of H in G is finite.</p> <p>Another idea is to try to show that (e.g.) every nilpotent quotient of your group is finite, and then show that your subgroup must contain some term of the lower central series. (You could replace nilpotent with soluble and the LCS with the derived series, and so on.)</p> <p>This may not count as a general method; perhaps it is more of a "trick", but I've seen it used to good effect in proving some commutativity theorems for groups and rings. If you can show that your subgroup is a <em>union</em> of (at most) two subgroups known to have finite index, then <a href="http://www.proofwiki.org/wiki/Union%5Fof%5FSubgroups" rel="nofollow">you are done</a>.</p> http://mathoverflow.net/questions/358/examples-of-great-mathematical-writing/3983#3983 Answer by James for Examples of great mathematical writing James 2009-11-03T18:22:36Z 2009-11-03T18:22:36Z <ol> <li><p>The book "Linear Algebra" by Greub; I've always thought his writing here was gorgeous, if a bit Spartan.</p></li> <li><p>Most of John Stillwell's books.</p></li> </ol> http://mathoverflow.net/questions/80370/nielsen-equivalence-in-one-relator-groups Comment by James James 2011-11-08T16:14:24Z 2011-11-08T16:14:24Z Perhaps you already know this, but Gerhard Rosenberger has done a lot of work in this area, so you might find something of use among his papers. http://mathoverflow.net/questions/79316/goldbachs-conjecture-once-again Comment by James James 2011-10-27T21:49:04Z 2011-10-27T21:49:04Z In all fairness, &quot;primality radius&quot; and $ord_C(n)$ were defined in the linked question. http://mathoverflow.net/questions/78910/computer-algebra-system-for-calculation-of-characteristic-polynomial-of-sparse-ma/79013#79013 Comment by James James 2011-10-25T05:02:58Z 2011-10-25T05:02:58Z @rhlewis As shown, I used a randomly generated matrix with density about 1/N, so there were, in fact, some zero rows, as well as some rows with 1 or 2 ones, and one row with 3 ones (based on a handful of random samples I looked at). If I change the density to 2/N, the runtime goes up to about 22 seconds. I just now tried a random permutation matrix as well, and got a runtime of about 5 minutes. That seems to make sense, as there are no zero rows to cut down the work. I used a 64-bit Linux machine with 8 Gb of memory. http://mathoverflow.net/questions/77845/is-there-a-residually-nilpotent-one-relator-group-that-is-not-residually-a-finite/77860#77860 Comment by James James 2011-10-11T22:56:46Z 2011-10-11T22:56:46Z Wait a second, your group is not residually nilpotent? (See my answer to Colin Tan's question.) Since $\langle a,b\mid a^{6}=1\rangle$ is finitely generated, if it is residually nilpotent, then it is residually a finite nilpotent group. Consider the commutator $w = [u,v]$, where $u = a^{2}$ and $v = b^{-1}a^{3}b$. Then $u$ has order 3 and $v$ has order 2, and $w$ is non-trivial. So there is a finite nilpotent group in which $w$ has non-trivial image. But then so too do $u$ and $v$ and their images have relatively prime orders, so they must commute, a contradiction. Am I missing something? http://mathoverflow.net/questions/77845/is-there-a-residually-nilpotent-one-relator-group-that-is-not-residually-a-finite/77860#77860 Comment by James James 2011-10-11T21:33:51Z 2011-10-11T21:33:51Z Yes, of course, you are right. I had meant to (but didn't) exclude this case. What I really want is that all the generators occur in the relator, so that the question doesn't fail for obvious reasons. I'll accept this answer and try re-posting with a more careful formulation of the problem. Thanks. http://mathoverflow.net/questions/44326/most-memorable-titles/44349#44349 Comment by James James 2010-10-31T20:34:50Z 2010-10-31T20:34:50Z +1. This also brings to mind &quot;Generatingfunctionology&quot;, which is itself pretty memorable. http://mathoverflow.net/questions/26059/example-of-noetherian-group-every-subgroup-is-finitely-generated-that-is-not-fi/26060#26060 Comment by James James 2010-05-26T20:54:14Z 2010-05-26T20:54:14Z The last I heard (2009) this was unknown even for residually finite groups. (The question in this form is due to M.I. Kargapolov in the Kourovka notebook.) http://mathoverflow.net/questions/25127/examples-of-non-abelian-groups-arising-in-nature-without-any-natural-action/25144#25144 Comment by James James 2010-05-19T15:25:46Z 2010-05-19T15:25:46Z An example of a group defined by an intrinsic property is a free group defined by the universal mapping property. Actually, any group defined by means of a universal mapping property might work here. I was hesitant to offer this as an answer, because one then has the obligation to construct the beast. At that point, we get into the calculus of words and, in order to get associativity, the first thing you want to do is ... http://mathoverflow.net/questions/25127/examples-of-non-abelian-groups-arising-in-nature-without-any-natural-action/25145#25145 Comment by James James 2010-05-18T20:12:00Z 2010-05-18T20:12:00Z It seems to me that <i>every</i> group arises <i>with</i> an action, via Cayley's Theorem, regardless of how it might be defined. http://mathoverflow.net/questions/23898/is-a-non-abelian-free-group-fully-residually-a-finite-non-abelian-simple-group/23899#23899 Comment by James James 2010-05-07T22:53:25Z 2010-05-07T22:53:25Z Ooh, very nice! It had not occurred to me to think about the stronger result you proved. Thanks! http://mathoverflow.net/questions/18593/what-are-the-worst-notations-in-your-opinion/18635#18635 Comment by James James 2010-03-19T03:18:48Z 2010-03-19T03:18:48Z I had always heard the convention originated in the calculus of permutations. If one writes permutations to the right of their arguments, then the action of the permutation follows the natural way to multiply them. I.e., $(fg)(x) = g(f(x))$, while $x(fg) = (xf)g$. Of course, one can get around that by writing the permutation as a superscript, which is also a &quot;right action&quot;.