In mathematics, the composition operator takes two functions, and , and returns a new function . Thus, the function g is applied after applying f to x.
Reverse composition, sometimes denoted , applies the operation in the opposite order, applying first and second. Intuitively, reverse composition is a chaining process in which the output of function f feeds the input of function g.
The composition of functions is a special case of the composition of relations, sometimes also denoted by . As a result, all properties of composition of relations are true of composition of functions,[1] such as associativity.
Examples
Composition of functions on a finite set: If f = {(1, 1), (2, 3), (3, 1), (4, 2)}, and g = {(1, 2), (2, 3), (3, 1), (4, 2)}, then g ∘ f = {(1, 2), (2, 1), (3, 2), (4, 3)}, as shown in the figure.
Composition of functions on an infinite set: If f: R → R (where R is the set of all real numbers) is given by f(x) = 2x + 4 and g: R → R is given by g(x) = x3, then:
(f ∘ g)(x) = f(g(x)) = f(x3) = 2x3 + 4, and
(g ∘ f)(x) = g(f(x)) = g(2x + 4) = (2x + 4)3.
If an airplane's altitude at time t is a(t), and the air pressure at altitude x is p(x), then (p ∘ a)(t) is the pressure around the plane at time t.
Properties
The composition of functions is always associative—a property inherited from the composition of relations.[1] That is, if f, g, and h are composable, then f ∘ (g ∘ h) = (f ∘ g) ∘ h.[2] Since the parentheses do not change the result, they are generally omitted.
In a strict sense, the composition g ∘ f is only meaningful if the codomain of f equals the domain of g; in a wider sense, it is sufficient that the former be an improper subset of the latter.[nb 1]
Moreover, it is often convenient to tacitly restrict the domain of f, such that f produces only values in the domain of g. For example, the composition g ∘ f of the functions f : R → (−∞,+9] defined by f(x) = 9 − x2 and g : [0,+∞) → R defined by can be defined on the interval[−3,+3].
The functions g and f are said to commute with each other if g ∘ f = f ∘ g. Commutativity is a special property, attained only by particular functions, and often in special circumstances. For example, |x| + 3 = |x + 3| only when x ≥ 0. The picture shows another example.
The composition of one-to-one (injective) functions is always one-to-one. Similarly, the composition of onto (surjective) functions is always onto. It follows that the composition of two bijections is also a bijection. The inverse function of a composition (assumed invertible) has the property that (f ∘ g)−1 = g−1∘ f−1.[3]
Composition of functions is sometimes described as a kind of multiplication on a function space, but has very different properties from pointwise multiplication of functions (e.g. composition is not commutative).[4]
Suppose one has two (or more) functions f: X → X,g: X → X having the same domain and codomain; these are often called transformations. Then one can form chains of transformations composed together, such as f ∘ f ∘ g ∘ f. Such chains have the algebraic structure of a monoid, called a transformation monoid or (much more seldom) a composition monoid. In general, transformation monoids can have remarkably complicated structure. One particular notable example is the de Rham curve. The set of all functions f: X → X is called the full transformation semigroup[5] or symmetric semigroup[6] on X. (One can actually define two semigroups depending how one defines the semigroup operation as the left or right composition of functions.[7])
If the transformations are bijective (and thus invertible), then the set of all possible combinations of these functions forms a transformation group; and one says that the group is generated by these functions. A fundamental result in group theory, Cayley's theorem, essentially says that any group is in fact just a subgroup of a permutation group (up to isomorphism).[8]
The set of all bijective functions f: X → X (called permutations) forms a group with respect to function composition. This is the symmetric group, also sometimes called the composition group.
In the symmetric semigroup (of all transformations) one also finds a weaker, non-unique notion of inverse (called a pseudoinverse) because the symmetric semigroup is a regular semigroup.[9]
By convention, f0 is defined as the identity map on f's domain, idX.
If Y = X and f: X → X admits an inverse functionf−1, negative functional powers f−n are defined for n > 0 as the negated power of the inverse function: f−n = (f−1)n.[12][10][11]
Note: If f takes its values in a ring (in particular for real or complex-valued f), there is a risk of confusion, as fn could also stand for the n-fold product of f, e.g. f2(x) = f(x) · f(x).[11] For trigonometric functions, usually the latter is meant, at least for positive exponents.[11] For example, in trigonometry, this superscript notation represents standard exponentiation when used with trigonometric functions:
sin2(x) = sin(x) · sin(x).
However, for negative exponents (especially −1), it nevertheless usually refers to the inverse function, e.g., tan−1 = arctan ≠ 1/tan.
In some cases, when, for a given function f, the equation g ∘ g = f has a unique solution g, that function can be defined as the functional square root of f, then written as g = f1/2.
More generally, when gn = f has a unique solution for some natural number n > 0, then fm/n can be defined as gm.
Under additional restrictions, this idea can be generalized so that the iteration count becomes a continuous parameter; in this case, such a system is called a flow, specified through solutions of Schröder's equation. Iterated functions and flows occur naturally in the study of fractals and dynamical systems.
To avoid ambiguity, some mathematicians[citation needed] choose to use ∘ to denote the compositional meaning, writing f∘n(x) for the n-th iterate of the function f(x), as in, for example, f∘3(x) meaning f(f(f(x))). For the same purpose, f[n](x) was used by Benjamin Peirce[14][11] whereas Alfred Pringsheim and Jules Molk suggested nf(x) instead.[15][11][nb 2]
Alternative notations
Many mathematicians, particularly in group theory, omit the composition symbol, writing gf for g ∘ f.[16]
During the mid-20th century, some mathematicians adopted postfix notation, writing xf for f(x) and (xf)g for g(f(x)).[17] This can be more natural than prefix notation in many cases, such as in linear algebra when x is a row vector and f and g denote matrices and the composition is by matrix multiplication. The order is important because function composition is not necessarily commutative. Having successive transformations applying and composing to the right agrees with the left-to-right reading sequence.
Mathematicians who use postfix notation may write "fg", meaning first apply f and then apply g, in keeping with the order the symbols occur in postfix notation, thus making the notation "fg" ambiguous. Computer scientists may write "f ; g" for this,[18] thereby disambiguating the order of composition. To distinguish the left composition operator from a text semicolon, in the Z notation the ⨾ character is used for left relation composition.[19] Since all functions are binary relations, it is correct to use the [fat] semicolon for function composition as well (see the article on composition of relations for further details on this notation).
Given a function g, the composition operatorCg is defined as that operator which maps functions to functions as Composition operators are studied in the field of operator theory.
Function composition appears in one form or another in numerous programming languages.
Multivariate functions
Partial composition is possible for multivariate functions. The function resulting when some argument xi of the function f is replaced by the function g is called a composition of f and g in some computer engineering contexts, and is denoted f |xi = g
When g is a simple constant b, composition degenerates into a (partial) valuation, whose result is also known as restriction or co-factor.[20]
In general, the composition of multivariate functions may involve several other functions as arguments, as in the definition of primitive recursive function. Given f, a n-ary function, and nm-ary functions g1, ..., gn, the composition of f with g1, ..., gn, is the m-ary function
This is sometimes called the generalized composite or superposition of f with g1, ..., gn.[21] The partial composition in only one argument mentioned previously can be instantiated from this more general scheme by setting all argument functions except one to be suitably chosen projection functions. Here g1, ..., gn can be seen as a single vector/tuple-valued function in this generalized scheme, in which case this is precisely the standard definition of function composition.[22]
A set of finitary operations on some base set X is called a clone if it contains all projections and is closed under generalized composition. A clone generally contains operations of various arities.[21] The notion of commutation also finds an interesting generalization in the multivariate case; a function f of arity n is said to commute with a function g of arity m if f is a homomorphism preserving g, and vice versa, that is:[21]
A unary operation always commutes with itself, but this is not necessarily the case for a binary (or higher arity) operation. A binary (or higher arity) operation that commutes with itself is called medial or entropic.[21]
Generalizations
Composition can be generalized to arbitrary binary relations.
If R ⊆ X×Y and S ⊆ Y × Z are two binary relations, then their composition amounts to
.
Considering a function as a special case of a binary relation (namely functional relations), function composition satisfies the definition for relation composition. A small circle R∘S has been used for the infix notation of composition of relations, as well as functions. When used to represent composition of functions however, the text sequence is reversed to illustrate the different operation sequences accordingly.
The category of sets with functions as morphisms is the prototypical category. The axioms of a category are in fact inspired from the properties (and also the definition) of function composition.[24] The structures given by composition are axiomatized and generalized in category theory with the concept of morphism as the category-theoretical replacement of functions. The reversed order of composition in the formula (f ∘ g)−1 = (g−1 ∘ f−1) applies for composition of relations using converse relations, and thus in group theory. These structures form dagger categories.
The standard "foundation" for mathematics starts with sets and their elements. It is possible to start differently, by axiomatising not elements of sets but functions between sets. This can be done by using the language of categories and universal constructions.
. . . the membership relation for sets can often be replaced by the composition operation for functions. This leads to an alternative foundation for Mathematics upon categories -- specifically, on the category of all functions. Now much of Mathematics is dynamic, in that it deals with morphisms of an object into another object of the same kind. Such morphisms (like functions) form categories, and so the approach via categories fits well with the objective of organizing and understanding Mathematics. That, in truth, should be the goal of a proper philosophy of Mathematics.
The composition symbol ∘ is encoded as U+2218∘RING OPERATOR (∘, ∘); see the Degree symbol article for similar-appearing Unicode characters. In TeX, it is written \circ.
See also
Cobweb plot – a graphical technique for functional composition
^ abcdefgCajori, Florian (1952) [March 1929]. "§472. The power of a logarithm / §473. Iterated logarithms / §533. John Herschel's notation for inverse functions / §535. Persistence of rival notations for inverse functions / §537. Powers of trigonometric functions". A History of Mathematical Notations. Vol. 2 (3rd corrected printing of 1929 issue, 2nd ed.). Chicago, USA: Open court publishing company. pp. 108, 176–179, 336, 346. ISBN978-1-60206-714-1. Retrieved 2016-01-18. […] §473. Iterated logarithms […] We note here the symbolism used by Pringsheim and Molk in their joint Encyclopédie article: "2logba = logb (logba), …, k+1logba = logb (klogba)."[a] […] §533. John Herschel's notation for inverse functions, sin−1x, tan−1x, etc., was published by him in the Philosophical Transactions of London, for the year 1813. He says (p. 10): "This notation cos.−1e must not be understood to signify 1/cos. e, but what is usually written thus, arc (cos.=e)." He admits that some authors use cos.mA for (cos. A)m, but he justifies his own notation by pointing out that since d2x, Δ3x, Σ2x mean ddx, ΔΔΔ x, ΣΣ x, we ought to write sin.2x for sin. sin. x, log.3x for log. log. log. x. Just as we write d−n V=∫n V, we may write similarly sin.−1x=arc (sin.=x), log.−1x.=cx. Some years later Herschel explained that in 1813 he used fn(x), f−n(x), sin.−1x, etc., "as he then supposed for the first time. The work of a German Analyst, Burmann, has, however, within these few months come to his knowledge, in which the same is explained at a considerably earlier date. He[Burmann], however, does not seem to have noticed the convenience of applying this idea to the inverse functions tan−1, etc., nor does he appear at all aware of the inverse calculus of functions to which it gives rise." Herschel adds, "The symmetry of this notation and above all the new and most extensive views it opens of the nature of analytical operations seem to authorize its universal adoption."[b] […] §535. Persistence of rival notations for inverse function.— […] The use of Herschel's notation underwent a slight change in Benjamin Peirce's books, to remove the chief objection to them; Peirce wrote: "cos[−1]x," "log[−1]x."[c] […] §537. Powers of trigonometric functions.—Three principal notations have been used to denote, say, the square of sin x, namely, (sin x)2, sin x2, sin2x. The prevailing notation at present is sin2x, though the first is least likely to be misinterpreted. In the case of sin2x two interpretations suggest themselves; first, sin x ⋅ sin x; second,[d] sin (sin x). As functions of the last type do not ordinarily present themselves, the danger of misinterpretation is very much less than in case of log2x, where log x ⋅ log x and log (log x) are of frequent occurrence in analysis. […] The notation sinnx for (sin x)n has been widely used and is now the prevailing one. […] (xviii+367+1 pages including 1 addenda page) (NB. ISBN and link for reprint of 2nd edition by Cosimo, Inc., New York, USA, 2013.)
^Peano, Giuseppe (1903). Formulaire mathématique (in French). Vol. IV. p. 229.
^Peirce, Benjamin (1852). Curves, Functions and Forces. Vol. I (new ed.). Boston, USA. p. 203.{{cite book}}: CS1 maint: location missing publisher (link)
^Pringsheim, Alfred; Molk, Jules (1907). Encyclopédie des sciences mathématiques pures et appliquées (in French). Vol. I. p. 195. Part I.
يفتقر محتوى هذه المقالة إلى الاستشهاد بمصادر. فضلاً، ساهم في تطوير هذه المقالة من خلال إضافة مصادر موثوق بها. أي معلومات غير موثقة يمكن التشكيك بها وإزالتها. (فبراير 2016) المدرسة العليا الخاصة للمهندسين بسوسة معلومات المؤسس محمد ساسي الرضواني التأسيس 2011 النوع كلية هندسة...
Untuk teorema dalam teori fungsi harmonik, lihat Fungsi harmonik § Sifat nilai purata. Kalkulus Teorema dasar Limit fungsi Kontinuitas Teorema nilai purata Teorema Rolle Diferensial Definisi Turunan (perumuman) Tabel turunan Diferensial infinitesimal fungsi total Konsep Notasi untuk pendiferensialan Turunan kedua Turunan ketiga Perubahan variabel Pendiferensialan implisit Laju yang berkaitan Teorema Taylor Kaidah dan identitas Kaidah penjumlahan dalam pendiferensialan Perkalian Ran...
Гусяча лапка — термін, який має кілька значень. Ця сторінка значень містить посилання на статті про кожне з них.Якщо ви потрапили сюди за внутрішнім посиланням, будь ласка, поверніться та виправте його так, щоб воно вказувало безпосередньо на потрібну статтю.@ пошук посила
Chiến tranh Lưu Tống - Bắc NgụyThời giannăm 422 – năm 452Địa điểm{{{place}}}Kết quả Hai bên cùng bị tổn thất nặng, Bắc Ngụy chiếm được vùng Hoài BắcTham chiến Lưu Tống Bắc NgụyChỉ huy và lãnh đạo Đàn Đạo TếVương Huyền Mô Đáo Ngạn Chi Tiêu Bân Thẩm Khánh Chi Tiết An Đô Bàng Quý Minh Tạng Chất Ngụy Thái Vũ đếHề Cân Thúc Tôn Kiến Thác Bạt Nhân Liên Đề Vu Lạc Đạn N�...
الدوري الكندي الممتاز هو دوري كرة القدم الكندي المستوى الأول. يتكون الدوري من سبعة فرق في سبعة ملاعب لموسم الافتتاح 2019. تستخدم بشكل أساسي ملاعب متعددة الأغراض، يتم مشاركتها مع مزيج من فرق اتحاد كرة القدم والرغبي الكندية. جدول الملاعب الصورة الإسم المضيف الموقع أول موسم السع
هذه المقالة يتيمة إذ تصل إليها مقالات أخرى قليلة جدًا. فضلًا، ساعد بإضافة وصلة إليها في مقالات متعلقة بها. (نوفمبر 2020) ماكسيم كامارا معلومات شخصية الميلاد 4 فبراير 1945[1] كوناكري[2] الوفاة 29 مارس 2016 (71 سنة) [3] الرباط[2] الطول 1.70 م (5 قدم 7 بوصة) مر
Artikel ini sebatang kara, artinya tidak ada artikel lain yang memiliki pranala balik ke halaman ini.Bantulah menambah pranala ke artikel ini dari artikel yang berhubungan atau coba peralatan pencari pranala.Tag ini diberikan pada April 2017. Cho Woo-JinInformasi pribadiTanggal lahir 7 Juli 1987 (umur 36)Tempat lahir Korea SelatanPosisi bermain GelandangKarier senior*Tahun Tim Tampil (Gol)2006-2007 Sanfrecce Hiroshima * Penampilan dan gol di klub senior hanya dihitung dari liga domestik ...
لمعانٍ أخرى، طالع البستان (توضيح). هذه المقالة يتيمة إذ تصل إليها مقالات أخرى قليلة جدًا. فضلًا، ساعد بإضافة وصلة إليها في مقالات متعلقة بها. (مايو 2023) هذه مقالة غير مراجعة. ينبغي أن يزال هذا القالب بعد أن يراجعها محرر مغاير للذي أنشأها؛ إذا لزم الأمر فيجب أن توسم المقا�...
Día de la Ciudad de Moscú LocalizaciónPaís RusiaLocalidad MoscúDatos generalesTipo fiesta localCelebrada por Rusia MoscúPrimera vez 1 de enero de 1847Motivo Conmemorar la fundación de la ciudad[editar datos en Wikidata] El Día de la Ciudad de Moscú (en ruso: День города Москвы, romanizado: Den 'goroda Moskvy) es un evento oficial que se celebra anualmente en la ciudad de Moscú que honra la fundación de la ciudad en 1147 por el príncipe Yuri...
Confession d'AugsbourgFormat Symbole de foiLangues Néolatin, allemandAuteur Philippe MélanchthonDate de parution 25 juin 1530Publié dans Livre de ConcordeŒuvre dérivée Augsburg Confession Variata (en)modifier - modifier le code - modifier Wikidata La confession d'Augsbourg (Confessio Augustana) est un texte majeur du luthéranisme présenté le 25 juin 1530 à l'empereur Charles Quint lors de la diète d’Augsbourg. Présentation et rejet de la Confession Présentation de la confession...
Legislative Assembly constituency in Haryana State, India SirsaConstituency for the Haryana Legislative AssemblyConstituency detailsCountryIndiaRegionNorth IndiaStateHaryanaDistrictSirsaLS constituencySirsaTotal electors207,519[1]ReservationNoneMember of Legislative Assembly14th Haryana Legislative AssemblyIncumbent Gopal Kanda PartyHaryana Lokhit Party Sirsa Assembly constituency is one of the 90 Legislative Assembly constituencies of Haryana state in India.[2] It is part of ...
Hidrogen bromida Ball-and-stick model of hydrogen bromide Nama Nama IUPAC (preferensi) Hydrogen bromide[butuh rujukan] Nama IUPAC (sistematis) Bromane[1] Penanda Nomor CAS 10035-10-6 Y Model 3D (JSmol) Gambar interaktif 3DMet {{{3DMet}}} Referensi Beilstein 3587158 ChEBI CHEBI:47266 Y ChEMBL ChEMBL1231461 N ChemSpider 255 Y Nomor EC KEGG C13645 N MeSH Hydrobromic+Acid PubChem CID 260 Nomor RTECS {{{value}}} UNII 3IY7CNP8XJ N Nomor UN 1048 CompTox ...
This article is about the fort in Perote, Veracruz. For the one in Acapulco, Guerrero, see Fort of San Diego. San Carlos Fortress The San Carlos Fortress (in Spanish: Fortaleza de San Carlos) is an 18th-century fortress in the city of Perote, in the Mexican state of Veracruz. It is also known as the Fort of San Carlos, Perote Castle, the Castle of San Carlos, Perote Prison, San Carlos de Perote Fortress, and San Carlos de Perote Castle. The fortress was built from 1770 to 1776 by Manuel de Sa...