Translation operator #
This file defines the translation of a function from a group by an element of that group.
Notation #
τ a f
is notation for translate a f
.
See also #
Generally, translation is the same as acting on the domain by subtraction. This setting is
abstracted by DomAddAct
in such a way that τ a f = DomAddAct.mk (-a) +ᵥ f
(see
translate_eq_domAddActMk_vadd
). Using DomAddAct
is irritating in applications because of this
negation appearing inside DomAddAct.mk
. Although mathematically equivalent, the pen and paper
convention is that translating is an action by subtraction, not by addition.
Translation of a function in a group by an element of that group.
τ a f
is defined as x ↦ f (x - a)
.
Equations
Instances For
Translation of a function in a group by an element of that group.
τ a f
is defined as x ↦ f (x - a)
.
Equations
- translate.termτ = Lean.ParserDescr.node `translate.termτ 1024 (Lean.ParserDescr.symbol "τ ")
Instances For
See translate_add