Loading subject…
Bipartite Graph
A **bipartite graph** is a graph whose vertices can be divided into two sets so that every edge connects a vertex in one set to a vertex in the other set.
Chinese postman problem
The problem of finding a shortest closed route that traverses every edge of a weighted graph at least once.
Column vector
A vector written in component form as $\binom{x}{y}$, representing a translation of $x$ units horizontally and $y$ units vertically.
Complete graph
A graph where every pair of distinct vertices is joined by an edge.
Connected graph
A graph where every vertex can be reached from every other vertex by traveling along edges (possibly using several edges).
Cycle
A path that starts and ends at the same vertex and does not pass through any vertex more than once.
Degree
The **degree** of a vertex is the number of edges meeting at that vertex (counting multiple edges separately).
Directed graph
A collection of vertices (nodes) connected by edges (links) that have a specific direction.
Dot product
For $\mathbf{u}=\binom{u_1}{u_2}$ and $\mathbf{v}=\binom{v_1}{v_2}$, the dot product is $\mathbf{u}\cdot\mathbf{v}=u_1v_1+u_2v_2$.
Eulerian circuit
A trail that uses every edge exactly once and ends at the starting vertex.
Eulerian trail
A trail that uses every edge exactly once but starts and ends at different vertices.
Hamiltonian cycle
A Hamiltonian path that returns to its starting vertex.
Hamiltonian path
A path that visits every vertex exactly once.
Magnitude (of a vector)
The magnitude of a vector A is the length of the vector A and is denoted by $|A|$.
Negative of a vector
For a vector $\mathbf{a}$, the vector $-\mathbf{a}$ has the same magnitude but the opposite direction.
Network
A set of objects (called nodes or vertices) that are connected together.
Parallel vectors
Two vectors that point in the same or opposite direction. Equivalently, one is a scalar multiple of the other.
Position vector
The vector from the origin $O$ to a point, written $\overrightarrow{OA}$.
Resultant vector
The single vector that has the same effect as performing several vectors in sequence, for example $\mathbf{a}+\mathbf{b}$.
Scalar multiple
A vector of the form $k\mathbf{a}$, where $k$ is a number (scalar). It is parallel to $\mathbf{a}$ and has magnitude $|k|\,|\mathbf{a}|$.
Trail
A walk through a graph that does not repeat any edge.
Undirected graph
A graph where edges have no direction, so if vertex $A$ is connected to vertex $B$, then $B$ is also connected to $A$.
Vector
A quantity with both magnitude (size) and direction, often represented by a directed line segment (an arrow).
Weighted Graph
A **weighted graph** is a graph in which every edge has an associated number (a weight), representing something like distance, time, cost, or risk.