Zulip Chat Archive
Stream: maths
Topic: Wandering points
Yury G. Kudryashov (Jul 28 2024 at 20:25):
I've just noticed that the definition of a wandering point of a group action in Wikipedia is incorrect. Take V = univ
to see that every point is a wandering point according to this definition. I only used wandering points of self-maps, so never thought carefully about the right definition for a monoid/group action. Am I right that the correct definition is this one?
def MulAction.IsWanderingPoint (M : Type*) [One M] [TopologicalSpace M]
{X : Type*} [TopologicalSpace X] [SMul M X] (x : X) : Prop :=
β V β π (1 : M), β U β π x, β g β V, Disjoint (g β’ U) U
Also, should we have both the predicate and the set, or only one of them?
SΓ©bastien GouΓ«zel (Jul 29 2024 at 06:22):
I think your definition makes sense. Another one would be: there exists a compact neighborhood V
of the identity such that ..., but this one only makes sense in locally compact groups so your definition is better. It would be good to check that, in this case, the two definitions are equivalent, though.
Yury G. Kudryashov (Aug 04 2024 at 02:13):
I think that equivalence needs M
to be a locally compact (monoid? group?) and X
to be a locally compact topological space (didn't check all the details yet).
Antoine Chambert-Loir (Aug 07 2024 at 22:48):
I have looked up for definitions, but what you suggest does not seem to coincide with the definition given there, for example, http://arxiv.org/pdf/1608.06921v2,
of a non-wandering point of an action of a self-map
A point is a non-wandering point for if for every neighborhood of there exists an integer such that is nonempty.
or there https://math.stackexchange.com/questions/1719232/prove-a-group-action-is-wandering :
Definition: Let G be a topological group acting on a topological space X. The action is called wandering if for every π₯βπ there exists a neighborhood ππ₯ of π₯ such that the set {πβπΊ:(πβ ππ₯)β©ππ₯β β } is finite.
Yury G. Kudryashov (Aug 07 2024 at 23:15):
For the first definition, they coincide: in this case M = IterateAct f
(isomorphic to Multiplicative Nat
) and you can take V = {Multiplicative.ofAdd 0}
. Note that I'm defining wandering points while the paper defines non-wandering points.
Yury G. Kudryashov (Aug 07 2024 at 23:17):
The second definition makes no sense, if G
is something like Multiplicative Real
, because this set will contain a neighbourhood of (1 : G)
.
Yury G. Kudryashov (Aug 07 2024 at 23:18):
I'm not sure what difficulties they avoid by allowing the set to be larger than {1}
for a discrete group G
.
Last updated: May 02 2025 at 03:31 UTC