Mathematics-2
Mathematics-2
Graphs and
Networks
Graph Theory Fundamentals
Graphs and Nodes Graph Properties
Graphs are mathematical Graphs can exhibit properties like
structures composed of nodes (or connectivity, weight, direction, and
vertices) connected by edges. more. Analyzing these properties
Understanding the relationship reveals important insights about
between these fundamental the networks they represent.
building blocks is key to graph
theory.
Graph Algorithms Real-World Applications
Specialized algorithms like Graphs have widespread
Dijkstra's and Kruskal's are used to applications in fields like social
solve fundamental graph problems networks, trasport, and computer
like shortest path and minimum science. Understanding graph
spanning tree. Mastering these theory is essential for modeling
algorithms is crucial. and solving complex,
interconnected problems.
Vertices and Edges
Graphs are mathematical structures composed
of vertices (also called nodes) and edges
(also called links or connections). Vertices
represent the fundamental elements or entities
in the graph, while edges represent the
relationships or interactions between them.
Vertices can be labeled with unique identifiers,
such as numbers or text, and can have
associated attributes or properties. Edges
connect pairs of vertices, representing a
connection or relationship between them. Edges
can be directed, indicating a one-way
relationship, or undirected, indicating a bi-
directional relationship.
Directed and
Undirected Graphs
Graphs can be classified as either directed or
undirected. In a directed graph, the edges
have a specific direction, indicated by arrows.
Undirected graphs have edges without a
defined direction, representing a symmetric
relationship between the connected nodes.