In the mathematical field of graph theory, a graph homomorphism is a mapping between two graphs that respects their structure. More concretely, it is a function between the vertex sets of two graphs that maps adjacent vertices to adjacent vertices.
Homomorphisms generalize various notions of graph colorings and allow the expression of an important class of constraint satisfaction problems, such as certain scheduling or frequency assignment problems.[1]
The fact that homomorphisms can be composed leads to rich algebraic structures: a preorder on graphs, a distributive lattice, and a category (one for undirected graphs and one for directed graphs).[2]
The computational complexity of finding a homomorphism between given graphs is prohibitive in general, but a lot is known about special cases that are solvable in polynomial time. Boundaries between tractable and intractable cases have been an active area of research.[3]
Definitions
In this article, unless stated otherwise, graphs are finite, undirected graphs with loops allowed, but multiple edges (parallel edges) disallowed.
A graph homomorphism[4]f from a graph to a graph , written
f : G → H
is a function from to that preserves edges. Formally, implies , for all pairs of vertices in .
If there exists any homomorphism from G to H, then G is said to be homomorphic to H or H-colorable. This is often denoted as just
G → H .
The above definition is extended to directed graphs. Then, for a homomorphism f : G → H, (f(u),f(v)) is an arc (directed edge) of H whenever (u,v) is an arc of G.
There is an injective homomorphism from G to H (i.e., one that maps distinct vertices in G to distinct vertices in H) if and only if G is isomorphic to a subgraph of H.
If a homomorphism f : G → H is a bijection, and its inverse functionf −1 is also a graph homomorphism, then f is a graph isomorphism.[5]
Covering maps are a special kind of homomorphisms that mirror the definition and many properties of covering maps in topology.[6]
They are defined as surjective homomorphisms (i.e., something maps to each vertex) that are also locally bijective, that is, a bijection on the neighbourhood of each vertex.
An example is the bipartite double cover, formed from a graph by splitting each vertex v into v0 and v1 and replacing each edge u,v with edges u0,v1 and v0,u1. The function mapping v0 and v1 in the cover to v in the original graph is a homomorphism and a covering map.
Graph homeomorphism is a different notion, not related directly to homomorphisms. Roughly speaking, it requires injectivity, but allows mapping edges to paths (not just to edges). Graph minors are a still more relaxed notion.
Two graphs G and H are homomorphically equivalent if
G → H and H → G.[4] The maps are not necessarily surjective nor injective. For instance, the complete bipartite graphsK2,2 and K3,3 are homomorphically equivalent: each map can be defined as taking the left (resp. right) half of the domain graph and mapping to just one vertex in the left (resp. right) half of the image graph.
A retraction is a homomorphism r from a graph G to a subgraphH of G such that r(v) = v for each vertex v of H.
In this case the subgraph H is called a retract of G.[7]
A core is a graph with no homomorphism to any proper subgraph. Equivalently, a core can be defined as a graph that does not retract to any proper subgraph.[8]
Every graph G is homomorphically equivalent to a unique core (up to isomorphism), called the core of G.[9] Notably, this is not true in general for infinite graphs.[10]
However, the same definitions apply to directed graphs and a directed graph is also equivalent to a unique core.
Every graph and every directed graph contains its core as a retract and as an induced subgraph.[7]
For example, all complete graphsKn and all odd cycles (cycle graphs of odd length) are cores.
Every 3-colorable graph G that contains a triangle (that is, has the complete graphK3 as a subgraph) is homomorphically equivalent to K3. This is because, on one hand, a 3-coloring of G is the same as a homomorphism G → K3, as explained below. On the other hand, every subgraph of G trivially admits a homomorphism into G, implying K3 → G. This also means that K3 is the core of any such graph G. Similarly, every bipartite graph that has at least one edge is equivalent to K2.[11]
Connection to colorings
A k-coloring, for some integer k, is an assignment of one of k colors to each vertex of a graph G such that the endpoints of each edge get different colors. The k-colorings of G correspond exactly to homomorphisms from G to the complete graphKk.[12] Indeed, the vertices of Kk correspond to the k colors, and two colors are adjacent as vertices of Kk if and only if they are different. Hence a function defines a homomorphism to Kk if and only if it maps adjacent vertices of G to different colors (i.e., it is a k-coloring). In particular, G is k-colorable if and only if it is Kk-colorable.[12]
If there are two homomorphisms G → H and H → Kk, then their composition G → Kk is also a homomorphism.[13] In other words, if a graph H can be colored with k colors, and there is a homomorphism from G to H, then G can also be k-colored. Therefore, G → H implies χ(G) ≤ χ(H), where χ denotes the chromatic number of a graph (the least k for which it is k-colorable).[14]
Variants
General homomorphisms can also be thought of as a kind of coloring: if the vertices of a fixed graph H are the available colors and edges of H describe which colors are compatible, then an H-coloring of G is an assignment of colors to vertices of G such that adjacent vertices get compatible colors.
Many notions of graph coloring fit into this pattern and can be expressed as graph homomorphisms into different families of graphs.
Circular colorings can be defined using homomorphisms into circular complete graphs, refining the usual notion of colorings.[15]Fractional and b-fold coloring can be defined using homomorphisms into Kneser graphs.[16]T-colorings correspond to homomorphisms into certain infinite graphs.[17]
An oriented coloring of a directed graph is a homomorphism into any oriented graph.[18]
An L(2,1)-coloring is a homomorphism into the complement of the path graph that is locally injective, meaning it is required to be injective on the neighbourhood of every vertex.[19]
Another interesting connection concerns orientations of graphs.
An orientation of an undirected graph G is any directed graph obtained by choosing one of the two possible orientations for each edge.
An example of an orientation of the complete graph Kk is the transitive tournament T→k with vertices 1,2,…,k and arcs from i to j whenever i < j.
A homomorphism between orientations of graphs G and H yields a homomorphism between the undirected graphs G and H, simply by disregarding the orientations.
On the other hand, given a homomorphism G → H between undirected graphs, any orientation H→ of H can be pulled back to an orientation G→ of G so that G→ has a homomorphism to H→.
Therefore, a graph G is k-colorable (has a homomorphism to Kk) if and only if some orientation of G has a homomorphism to T→k.[20]
A folklore theorem states that for all k, a directed graph G has a homomorphism to T→k if and only if it admits no homomorphism from the directed path P→k+1.[21]
Here P→n is the directed graph with vertices 1, 2, …, n and edges from i to i + 1, for i = 1, 2, …, n − 1.
Therefore, a graph is k-colorable if and only if it has an orientation that admits no homomorphism from P→k+1.
This statement can be strengthened slightly to say that a graph is k-colorable if and only if some orientation contains no directed path of length k (no P→k+1 as a subgraph).
This is the Gallai–Hasse–Roy–Vitaver theorem.
Connection to constraint satisfaction problems
Examples
Some scheduling problems can be modeled as a question about finding graph homomorphisms.[22][23] As an example, one might want to assign workshop courses to time slots in a calendar so that two courses attended by the same student are not too close to each other in time. The courses form a graph G, with an edge between any two courses that are attended by some common student. The time slots form a graph H, with an edge between any two slots that are distant enough in time. For instance, if one wants a cyclical, weekly schedule, such that each student gets their workshop courses on non-consecutive days, then H would be the complement graph of C7. A graph homomorphism from G to H is then a schedule assigning courses to time slots, as specified.[22] To add a requirement saying that, e.g., no single student has courses on both Friday and Monday, it suffices to remove the corresponding edge from H.
A simple frequency allocation problem can be specified as follows: a number of transmitters in a wireless network must choose a frequency channel on which they will transmit data. To avoid interference, transmitters that are geographically close should use channels with frequencies that are far apart. If this condition is approximated with a single threshold to define 'geographically close' and 'far apart', then a valid channel choice again corresponds to a graph homomorphism. It should go from the graph of transmitters G, with edges between pairs that are geographically close, to the graph of channels H, with edges between channels that are far apart. While this model is rather simplified, it does admit some flexibility: transmitter pairs that are not close but could interfere because of geographical features can be added to the edges of G. Those that do not communicate at the same time can be removed from it. Similarly, channel pairs that are far apart but exhibit harmonic interference can be removed from the edge set of H.[24]
In each case, these simplified models display many of the issues that have to be handled in practice.[25]Constraint satisfaction problems, which generalize graph homomorphism problems, can express various additional types of conditions (such as individual preferences, or bounds on the number of coinciding assignments). This allows the models to be made more realistic and practical.
Formal view
Graphs and directed graphs can be viewed as a special case of the far more general notion called relational structures (defined as a set with a tuple of relations on it). Directed graphs are structures with a single binary relation (adjacency) on the domain (the vertex set).[26][3] Under this view, homomorphisms of such structures are exactly graph homomorphisms.
In general, the question of finding a homomorphism from one relational structure to another is a constraint satisfaction problem (CSP).
The case of graphs gives a concrete first step that helps to understand more complicated CSPs.
Many algorithmic methods for finding graph homomorphisms, like backtracking, constraint propagation and local search, apply to all CSPs.[3]
For graphs G and H, the question of whether G has a homomorphism to H corresponds to a CSP instance with only one kind of constraint,[3] as follows. The variables are the vertices of G and the domain for each variable is the vertex set of H. An evaluation is a function that assigns to each variable an element of the domain, so a function f from V(G) to V(H). Each edge or arc (u,v) of G then corresponds to the constraint ((u,v), E(H)). This is a constraint expressing that the evaluation should map the arc (u,v) to a pair (f(u),f(v)) that is in the relation E(H), that is, to an arc of H. A solution to the CSP is an evaluation that respects all constraints, so it is exactly a homomorphism from G to H.
Structure of homomorphisms
Compositions of homomorphisms are homomorphisms.[13]
In particular, the relation → on graphs is transitive (and reflexive, trivially), so it is a preorder on graphs.[27]
Let the equivalence class of a graph G under homomorphic equivalence be [G].
The equivalence class can also be represented by the unique core in [G].
The relation → is a partial order on those equivalence classes; it defines a poset.[28]
Let G < H denote that there is a homomorphism from G to H, but no homomorphism from H to G.
The relation → is a dense order, meaning that for all (undirected) graphs G, H such that G < H, there is a graph K such that G < K < H (this holds except for the trivial cases G = K0 or K1).[29][30]
For example, between any two complete graphs (except K0, K1, K2) there are infinitely many circular complete graphs, corresponding to rational numbers between natural numbers.[31]
The poset of equivalence classes of graphs under homomorphisms is a distributive lattice, with the join of [G] and [H] defined as (the equivalence class of) the disjoint union [G ∪ H], and the meet of [G] and [H] defined as the tensor product [G × H] (the choice of graphs G and H representing the equivalence classes [G] and [H] does not matter).[32]
The join-irreducible elements of this lattice are exactly connected graphs. This can be shown using the fact that a homomorphism maps a connected graph into one connected component of the target graph.[33][34]
The meet-irreducible elements of this lattice are exactly the multiplicative graphs. These are the graphs K such that a product G × H has a homomorphism to K only when one of G or H also does. Identifying multiplicative graphs lies at the heart of Hedetniemi's conjecture.[35][36]
For directed graphs the same definitions apply. In particular → is a partial order on equivalence classes of directed graphs. It is distinct from the order → on equivalence classes of undirected graphs, but contains it as a suborder. This is because every undirected graph can be thought of as a directed graph where every arc (u,v) appears together with its inverse arc (v,u), and this does not change the definition of homomorphism. The order → for directed graphs is again a distributive lattice and a Heyting algebra, with join and meet operations defined as before. However, it is not dense. There is also a category with directed graphs as objects and homomorphisms as arrows, which is again a cartesian closed category.[39][38]
Incomparable graphs
There are many incomparable graphs with respect to the homomorphism preorder, that is, pairs of graphs such that neither admits a homomorphism into the other.[40]
One way to construct them is to consider the odd girth of a graph G, the length of its shortest odd-length cycle.
The odd girth is, equivalently, the smallest odd numberg for which there exists a homomorphism from the cycle graph on g vertices to G. For this reason, if G → H, then the odd girth of G is greater than or equal to the odd girth of H.[41]
On the other hand, if G → H, then the chromatic number of G is less than or equal to the chromatic number of H.
Therefore, if G has strictly larger odd girth than H and strictly larger chromatic number than H, then G and H are incomparable.[40]
For example, the Grötzsch graph is 4-chromatic and triangle-free (it has girth 4 and odd girth 5),[42] so it is incomparable to the triangle graph K3.
Examples of graphs with arbitrarily large values of odd girth and chromatic number are Kneser graphs[43] and generalized Mycielskians.[44]
A sequence of such graphs, with simultaneously increasing values of both parameters, gives infinitely many incomparable graphs (an antichain in the homomorphism preorder).[45]
Other properties, such as density of the homomorphism preorder, can be proved using such families.[46]
Constructions of graphs with large values of chromatic number and girth, not just odd girth, are also possible, but more complicated (see Girth and graph coloring).
Among directed graphs, it is much easier to find incomparable pairs. For example, consider the directed cycle graphs C→n, with vertices 1, 2, …, n and edges from i to i + 1 (for i = 1, 2, …, n − 1) and from n to 1.
There is a homomorphism from C→n to C→k (n, k ≥ 3) if and only if n is a multiple of k.
In particular, directed cycle graphs C→n with n prime are all incomparable.[47]
Computational complexity
In the graph homomorphism problem, an instance is a pair of graphs (G,H) and a solution is a homomorphism from G to H. The general decision problem, asking whether there is any solution, is NP-complete.[48] However, limiting allowed instances gives rise to a variety of different problems, some of which are much easier to solve. Methods that apply when restraining the left side G are very different than for the right side H, but in each case a dichotomy (a sharp boundary between easy and hard cases) is known or conjectured.
Homomorphisms to a fixed graph
The homomorphism problem with a fixed graph H on the right side of each instance is also called the H-coloring problem. When H is the complete graph Kk, this is the graph k-coloring problem, which is solvable in polynomial time for k = 0, 1, 2, and NP-complete otherwise.[49]
In particular, K2-colorability of a graph G is equivalent to G being bipartite, which can be tested in linear time.
More generally, whenever H is a bipartite graph, H-colorability is equivalent to K2-colorability (or K0 / K1-colorability when H is empty/edgeless), hence equally easy to decide.[50]Pavol Hell and Jaroslav Nešetřil proved that, for undirected graphs, no other case is tractable:
Hell–Nešetřil theorem (1990): The H-coloring problem is in P when H is bipartite and NP-complete otherwise.[51][52]
This is also known as the dichotomy theorem for (undirected) graph homomorphisms, since it divides H-coloring problems into NP-complete or P problems, with no intermediate cases.
For directed graphs, the situation is more complicated and in fact equivalent to the much more general question of characterizing the complexity of constraint satisfaction problems.[53]
It turns out that H-coloring problems for directed graphs are just as general and as diverse as CSPs with any other kinds of constraints.[54][55] Formally, a (finite) constraint language (or template) Γ is a finite domain and a finite set of relations over this domain. CSP(Γ) is the constraint satisfaction problem where instances are only allowed to use constraints in Γ.
Theorem (Feder, Vardi 1998): For every constraint language Γ, the problem CSP(Γ) is equivalent under polynomial-time reductions to some H-coloring problem, for some directed graph H.[55]
Intuitively, this means that every algorithmic technique or complexity result that applies to H-coloring problems for directed graphs H applies just as well to general CSPs. In particular, one can ask whether the Hell–Nešetřil theorem can be extended to directed graphs. By the above theorem, this is equivalent to the Feder–Vardi conjecture (aka CSP conjecture, dichotomy conjecture) on CSP dichotomy, which states that for every constraint language Γ, CSP(Γ) is NP-complete or in P.[48] This conjecture was proved in 2017 independently by Dmitry Zhuk and Andrei Bulatov, leading to the following corollary:
Corollary (Bulatov 2017; Zhuk 2017): The H-coloring problem on directed graphs, for a fixed H, is either in P or NP-complete.
Homomorphisms from a fixed family of graphs
The homomorphism problem with a single fixed graph G on left side of input instances can be solved by brute-force in time |V(H)|O(|V(G)|), so polynomial in the size of the input graph H.[56] In other words, the problem is trivially in P for graphs G of bounded size. The interesting question is then what other properties of G, beside size, make polynomial algorithms possible.
The crucial property turns out to be treewidth, a measure of how tree-like the graph is. For a graph G of treewidth at most k and a graph H, the homomorphism problem can be solved in time |V(H)|O(k) with a standard dynamic programming approach. In fact, it is enough to assume that the core of G has treewidth at most k. This holds even if the core is not known.[57][58]
The exponent in the |V(H)|O(k)-time algorithm cannot be lowered significantly: no algorithm with running time |V(H)|o(tw(G) /log tw(G)) exists, assuming the exponential time hypothesis (ETH), even if the inputs are restricted to any class of graphs of unbounded treewidth.[59]
The ETH is an unproven assumption similar to P ≠ NP, but stronger.
Under the same assumption, there are also essentially no other properties that can be used to get polynomial time algorithms. This is formalized as follows:
Theorem (Grohe): For a computable class of graphs , the homomorphism problem for instances with is in P if and only if graphs in have cores of bounded treewidth (assuming ETH).[58]
One can ask whether the problem is at least solvable in a time arbitrarily highly dependent on G, but with a fixed polynomial dependency on the size of H.
The answer is again positive if we limit G to a class of graphs with cores of bounded treewidth, and negative for every other class.[58]
In the language of parameterized complexity, this formally states that the homomorphism problem in parameterized by the size (number of edges) of G exhibits a dichotomy. It is fixed-parameter tractable if graphs in have cores of bounded treewidth, and W[1]-complete otherwise.
The same statements hold more generally for constraint satisfaction problems (or for relational structures, in other words). The only assumption needed is that constraints can involve only a bounded number of variables (all relations are of some bounded arity, 2 in the case of graphs). The relevant parameter is then the treewidth of the primal constraint graph.[59]
^Dalmau, Víctor; Kolaitis, Phokion G.; Vardi, Moshe Y. (2002), "Constraint satisfaction, bounded treewidth, and finite-variable logics", in Van Hentenryck, Pascal (ed.), Principles and Practice of Constraint Programming – CP 2002, 8th International Conference, CP 2002, Ithaca, NY, USA, September 9–13, 2002, Proceedings, Lecture Notes in Computer Science, vol. 2470, Springer, pp. 310–326, doi:10.1007/3-540-46135-3_21, ISBN978-3-540-44120-5
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 Oktober 2022. Node merupakan sebuah bentuk sederhana dasar dari struktur data, seperti daftar yang terhubung atau struktur data pohon. Node yang memiliki data juga dapat disambungkan ke node lain. Tautan diantara node biasanya diimplementasikan oleh pointer. Kompute...
Weightlifting Championship Main article: 2021 World Weightlifting Championships 2021 World Weightlifting ChampionshipsMenWomen55 kg45 kg61 kg49 kg67 kg55 kg73 kg59 kg81 kg64 kg89 kg71 kg96 kg76 kg102 kg81 kg109 kg87 kg+109 kg+87 kgvte The women's 71 kilograms competition at the 2021 World Weightlifting Championships was held on 13 December 2021.[1] Schedule Date Time Event 13 December 2021 08:30 Group C 13:00 Group B 19:00 Group A Medalists Event Gold Silver Bronze Snatch Evgeniia Gus...
The Atlantic coast at North Hampton, New Hampshire In this 2018 map by the N.H. Department of Transportation, New Hampshire's seacoast region (in lighter blue) lies at the southeastern corner of the state. The Seacoast Region is the southeast area of the U.S. state of New Hampshire that is centered around the city of Portsmouth. It includes the eastern portion of Rockingham County and the southern portion of Strafford County.[1] At its narrowest definition, the region stretches 13 mil...
Sri Lankan cricketer Achini KulasuriyaKulasuriya bowling for Sri Lanka during the 2020 ICC Women's T20 World CupPersonal informationFull nameWaliarawe Gedara Achini Kalhari Kaushalya KulasuriyaBorn (1990-06-07) 7 June 1990 (age 33)Matale, Sri LankaBattingLeft-handedBowlingRight arm slow-mediumInternational information National sideSri LankaODI debut (cap 64)10 November 2015 v New ZealandLast ODI4 July 2022 v IndiaT20I debut (cap 39)22 November 2...
2020 single by Kesha This article has an unclear citation style. The references used may be made clearer with a different or consistent style of citation and footnoting. (September 2020) (Learn how and when to remove this template message) Little Bit of LoveRemix coverPromotional single by Keshafrom the album High Road ReleasedSeptember 25, 2020 (2020-09-25)GenrePop[1]Length2:22Label RCA Kemosabe Songwriter(s) Kesha Sebert Stephen Wrabel Nate Ruess Ajay Bhattacharya Pro...
Ne doit pas être confondu avec Häfeli DH-4. Airco DH.4 Un DH-4B américain avec un moteur en étoile Wright. Constructeur Airco Rôle bombardier léger biplan biplace Premier vol Août 1916 Mise en service mars 1917 Équipage 2 Motorisation Moteur Rolls-Royce Eagle VI Nombre 1 Type 12 cylindres en V Puissance unitaire 250 ch Dimensions Envergure 12,92 m Longueur 9,35 m Hauteur 3,35 m Surface alaire 40,32 m2 Masses À vide 1 083 kg Maximale 1 575 kg P...
Notable NFL game played in blizzard conditions For other uses, see Snow Bowl (disambiguation). Snow BowlHighmark Stadium, the site of the game, during a less snowy December home game Indianapolis Colts (3–9) Buffalo Bills (6–6) 7 13 Head coach:Chuck Pagano Head coach:Sean McDermott 1234OT Total IND 00070 7 BUF 07006 13 DateDecember 10, 2017StadiumNew Era Field, Orchard Park, New YorkFavoriteBuffalo by 3.5RefereeBrad AllenAttendance60,222TV in the United StatesNetworkCBSAnnouncersSpero Ded...
Location of Tsukubo District in Okayama Prefecture Tsukubo (都窪郡, Tsukubo-gun) is a district located in Okayama Prefecture, Japan. As of 2003, the district has an estimated population of 21,601 and a population density of 789.80 persons per km2. The total area is 27.35 km2. Towns and villages Hayashima Merger On March 22, 2005, the villages of Yamate and Kiyone merged into the city of Sōja.[1] References ^ 総務省|令和2年版 地方財政白書|資料編 〔附�...
Football clubBetanzosFull nameBetanzos Club de FútbolFounded1952GroundGarcía Hermanos, Betanzos, Galicia, SpainCapacity5,000Chairman Julián GarcíaManager Óscar GilsanzLeagueTercera Federación – Group 12022–23Preferente de Galicia – Group 1, 2nd of 20 (promoted) Home colours Away colours Betanzos Club de Fútbol is a football team based in Betanzos in the autonomous community of Galicia. Founded in 1952, they play in the Tercera Federación – Group 1, holding home matches at Esta...
Hong Kong TV series or program The Legend of the Condor HeroesDVD cover artChinese nameTraditional Chinese射鵰英雄傳Simplified Chinese射雕英雄传TranscriptionsStandard MandarinHanyu PinyinShè Diāo Yīng Xióng ZhuànYue: CantoneseJyutpingSe6 Diu1 Jing1 Hung4 Zyun6 GenreWuxiaBased onThe Legend of the Condor Heroesby Louis ChaScreenplay byWong Kwok-faiDirected byLeung Tak-wahYuen Ying-mingLam Kin-lungYun Wai-yeeKong Kam-hungLau Kwok-hoLam Dik-on (action director)StarringJulian ...
Luis Ramos Datos personalesNombre completo Luis Arcángel Ramos ColónNacimiento San Pedro Sula, Honduras11 de abril de 1985 (39 años)Nacionalidad(es) Hondureña HúngaraAltura 1.80 metrosCarrera deportivaDeporte FútbolClub profesionalDebut deportivo 2003(Marathón)Club MarathónPosición MediocampistaGoles en clubes 0 (Selección hondureña sub-21)Selección nacionalPart. 2[editar datos en Wikidata] Luís Arcángel Ramos Colón (San Pedro Sula, Cortés, Honduras, 11 de ...
National monument in Kane and Garfield counties in Utah, United States Grand Staircase–Escalante National MonumentIUCN category V (protected landscape/seascape)A canyon in Grand Staircase–Escalante National MonumentLocation in the United StatesShow map of the United StatesGrand Staircase–Escalante National Monument (Utah)Show map of UtahLocationKane County and Garfield County, Utah, United StatesNearest cityKanab, UtahCoordinates37°24′0″N 111°41′0″W / 37.4...
El Centro Cultural Islamico de Colón Islam by countryWorld percentage of Muslims by country Africa Algeria Angola Benin Botswana Burkina Faso Burundi Cameroon Cape Verde Central African Republic Chad Comoros Democratic Republic of the Congo Republic of the Congo Djibouti Egypt Equatorial Guinea Eritrea Eswatini Ethiopia Gabon Gambia Ghana Guinea Guinea-Bissau Ivory Coast Kenya Lesotho Liberia Libya Madagascar Malawi Mali Mauritania Mauritius Mayotte Morocco Western Sahara Mozambique Namibia ...
Rapimento di Aldo MoroAldo Moro nella prima foto diffusa dalle Brigate Rosse durante il sequestro TipoSequestro, omicidio Data16 marzo - 9 maggio 1978 LuogoRoma Stato Italia Coordinate41°53′39.37″N 12°28′42.35″E41°53′39.37″N, 12°28′42.35″E ObiettivoAldo Moro ResponsabiliBrigate Rosse MotivazioneTerrorismo ConseguenzeMorti6 (Aldo Moro e 5 membri della scorta) Modifica dati su Wikidata · Manuale Il caso Moro è l'insieme delle vicende relative all'agguato, al sequ...
Venezuelan baseball player & coach (born 1981) Baseball player Ray OlmedoOlmedo with the Chicago White SoxInfielderBorn: (1981-05-31) May 31, 1981 (age 43)Maracay, Aragua State, VenezuelaBatted: SwitchThrew: RightMLB debutMay 25, 2003, for the Cincinnati RedsLast MLB appearanceOctober 3, 2012, for the Chicago White SoxMLB statisticsBatting average.230Home runs2Runs batted in27 Teams Cincinnati Reds (2003–2006) Toronto Blue Jays (2007) Chicago White Sox...
Fulton John Sheenarcivescovo della Chiesa cattolica Da per Matrem Me venire Incarichi ricoperti Vescovo titolare di Cesariana (1951-1966) Vescovo ausiliare di New York (1951-1966) Vescovo di Rochester (1966-1969) Arcivescovo titolare di Newport (1969-1979) Nato8 maggio 1895 ad El Paso Ordinato presbitero20 settembre 1919 Nominato vescovo28 maggio 1951 da papa Pio XII Consacrato vescovo11 giugno 1951 dal cardinale Adeodato Piazza, O.C.D. Elevato arcivescovo6 ottobre 1969 da papa Pa...
Ghanaian sprinter (born 1997) Joseph AmoahAmoah in 2018Personal informationFull nameJoseph Paul AmoahBorn (1997-01-12) 12 January 1997 (age 27)Greater Accra, Ghana[1]Height180 cm (5 ft 11 in)[2]Weight68 kg (150 lb)[2]SportCountryGhanaSportAthleticsEvent(s)100 m, 200 mCollege teamCoppin State Eagles (2017–2021)[3]Coached byJamie Wilson[4]Achievements and titlesPersonal bests100 m: 9.94 (2022)200...
Hospital in Iganga District, UgandaIganga General HospitalUganda Ministry of HealthGeographyLocationIganga, Iganga District, UgandaCoordinates00°36′57″N 33°29′04″E / 0.61583°N 33.48444°E / 0.61583; 33.48444OrganisationCare systemPublicTypeGeneralServicesEmergency departmentIBeds100HistoryOpened1968LinksOther linksHospitals in Uganda Iganga General Hospital, also, Iganga District Hospital or Iganga Main Hospital, Iganga Hospital commonly known as Nakavule H...