{"id":286586,"date":"2024-08-16T11:26:45","date_gmt":"2024-08-16T05:56:45","guid":{"rendered":"https:\/\/www.aakash.ac.in\/blog\/?p=286586"},"modified":"2024-08-16T11:26:45","modified_gmt":"2024-08-16T05:56:45","slug":"graphs-in-maths-types-applications-and-significance","status":"publish","type":"post","link":"https:\/\/www.aakash.ac.in\/blog\/graphs-in-maths-types-applications-and-significance\/","title":{"rendered":"Graphs in Maths: Types, Applications and Significance"},"content":{"rendered":"<p style=\"text-align: justify;\">Graphs are a fundamental concept in mathematics, particularly in the study of discrete structures and data representation. They play a crucial role in various fields, including computer science, engineering, economics, and more. This article will provide a detailed explanation of what graphs are in the context of mathematics, their types, applications, and how they are used to represent relationships between different entities.<\/p>\n<h2 style=\"text-align: justify;\"><strong>Introduction to Graphs in Mathematics<\/strong><\/h2>\n<p style=\"text-align: justify;\">In mathematics, a graph is a collection of points, called vertices, connected by lines, called edges. Graphs are used to model relationships between pairs of objects. For example, a graph can be used to represent a network of roads connecting cities, with cities as vertices and roads as edges. Graphs are an essential tool in mathematics for visualizing and solving problems related to networks, paths, and connections.<\/p>\n<h2 style=\"text-align: justify;\"><strong>Components of a Graph<\/strong><\/h2>\n<p style=\"text-align: justify;\">A graph consists of two main components:<\/p>\n<ol style=\"text-align: justify;\">\n<li><strong>Vertices (Nodes):<\/strong><br \/>\nVertices are the fundamental units of a graph. They represent the entities or objects in the graph. For instance, in a social network, each person can be represented as a vertex.<\/li>\n<li><strong>Edges (Links):<\/strong><br \/>\nEdges are the connections between vertices. They represent the relationship or interaction between the entities. In the social network example, an edge could represent a friendship or a connection between two people.<\/li>\n<\/ol>\n<table>\n<thead>\n<tr>\n<th>Component<\/th>\n<th>Description<\/th>\n<th>Example (Social Network)<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Vertices<\/td>\n<td>The objects or entities in the graph<\/td>\n<td>People<\/td>\n<\/tr>\n<tr>\n<td>Edges<\/td>\n<td>The connections or relationships between the vertices<\/td>\n<td>Friendships\/Connections<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2 style=\"text-align: justify;\"><strong>Types of Graphs<\/strong><\/h2>\n<p style=\"text-align: justify;\">Graphs can be categorized based on various characteristics, such as the nature of edges, direction of edges, and whether the graph is connected or disconnected. Below are some common types of graphs:<\/p>\n<h3 style=\"text-align: justify;\"><strong>1. Undirected Graph<\/strong><\/h3>\n<p style=\"text-align: justify;\">An undirected graph is a graph where edges have no direction. The connection between vertices is bidirectional, meaning if vertex A is connected to vertex B, then vertex B is also connected to vertex A.<\/p>\n<h3 style=\"text-align: justify;\"><strong>2. Directed Graph (Digraph)<\/strong><\/h3>\n<p style=\"text-align: justify;\">In a directed graph, edges have a direction, indicating a one-way relationship between vertices. If vertex A is connected to vertex B, it does not necessarily mean that vertex B is connected to vertex A.<\/p>\n<h3 style=\"text-align: justify;\"><strong>3. Weighted Graph<\/strong><\/h3>\n<p style=\"text-align: justify;\">A weighted graph is a graph where edges have weights associated with them. These weights can represent various factors such as distance, cost, or time.<\/p>\n<h3 style=\"text-align: justify;\"><strong>4. Simple Graph<\/strong><\/h3>\n<p style=\"text-align: justify;\">A simple graph is a graph that does not contain any loops or multiple edges between the same pair of vertices. Each edge connects two distinct vertices.<\/p>\n<h3 style=\"text-align: justify;\"><strong>5. Complete Graph<\/strong><\/h3>\n<p style=\"text-align: justify;\">A complete graph is a graph where every pair of vertices is connected by an edge. In a complete graph with n vertices, there are n(n-1)\/2 edges.<\/p>\n<table>\n<thead>\n<tr>\n<th>Type<\/th>\n<th>Description<\/th>\n<th>Example<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Undirected Graph<\/td>\n<td>Edges have no direction<\/td>\n<td>A road network where roads connect cities in both directions<\/td>\n<\/tr>\n<tr>\n<td>Directed Graph<\/td>\n<td>Edges have a direction<\/td>\n<td>A one-way street system<\/td>\n<\/tr>\n<tr>\n<td>Weighted Graph<\/td>\n<td>Edges have weights<\/td>\n<td>A network where distances between cities are labeled<\/td>\n<\/tr>\n<tr>\n<td>Simple Graph<\/td>\n<td>No loops or multiple edges between the same pair of vertices<\/td>\n<td>A basic network with unique connections<\/td>\n<\/tr>\n<tr>\n<td>Complete Graph<\/td>\n<td>Every pair of vertices is connected<\/td>\n<td>A fully connected network of friends<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2 style=\"text-align: justify;\"><strong>Graph Representation<\/strong><\/h2>\n<p style=\"text-align: justify;\">Graphs can be represented in several ways, depending on the application and the properties of the graph. The most common methods of graph representation include:<\/p>\n<h3 style=\"text-align: justify;\"><strong>1. Adjacency Matrix<\/strong><\/h3>\n<p style=\"text-align: justify;\">An adjacency matrix is a square matrix used to represent a graph. The rows and columns represent vertices, and the entries indicate whether an edge exists between the vertices. In an undirected graph, the adjacency matrix is symmetric.<\/p>\n<table>\n<thead>\n<tr>\n<th><\/th>\n<th>A<\/th>\n<th>B<\/th>\n<th>C<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><strong>A<\/strong><\/td>\n<td>0<\/td>\n<td>1<\/td>\n<td>0<\/td>\n<\/tr>\n<tr>\n<td><strong>B<\/strong><\/td>\n<td>1<\/td>\n<td>0<\/td>\n<td>1<\/td>\n<\/tr>\n<tr>\n<td><strong>C<\/strong><\/td>\n<td>0<\/td>\n<td>1<\/td>\n<td>0<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p style=\"text-align: justify;\">In this matrix, 1 indicates the presence of an edge between the vertices, and 0 indicates no edge.<\/p>\n<h3 style=\"text-align: justify;\"><strong>2. Adjacency List<\/strong><\/h3>\n<p style=\"text-align: justify;\">An adjacency list represents a graph by listing each vertex and the vertices it is connected to. This method is more memory-efficient for sparse graphs, where the number of edges is much smaller than the number of possible edges.<\/p>\n<p style=\"text-align: justify;\"><strong>Example: Adjacency List Representation<\/strong><\/p>\n<ul style=\"text-align: justify;\">\n<li><strong>A:<\/strong> B<\/li>\n<li><strong>B:<\/strong> A, C<\/li>\n<li><strong>C:<\/strong> B<\/li>\n<\/ul>\n<h3 style=\"text-align: justify;\"><strong>3. Incidence Matrix<\/strong><\/h3>\n<p style=\"text-align: justify;\">An incidence matrix is a matrix that shows the relationship between vertices and edges. Rows represent vertices, and columns represent edges. The entries indicate whether a vertex is incident to an edge.<\/p>\n<table>\n<thead>\n<tr>\n<th><\/th>\n<th>Edge 1<\/th>\n<th>Edge 2<\/th>\n<th>Edge 3<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><strong>A<\/strong><\/td>\n<td>1<\/td>\n<td>0<\/td>\n<td>0<\/td>\n<\/tr>\n<tr>\n<td><strong>B<\/strong><\/td>\n<td>1<\/td>\n<td>1<\/td>\n<td>0<\/td>\n<\/tr>\n<tr>\n<td><strong>C<\/strong><\/td>\n<td>0<\/td>\n<td>1<\/td>\n<td>1<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p style=\"text-align: justify;\">In this table, 1 indicates that the vertex is connected to the edge, while 0 indicates no connection.<\/p>\n<h2 style=\"text-align: justify;\"><strong>Applications of Graphs<\/strong><\/h2>\n<p style=\"text-align: justify;\">Graphs are used in various real-world applications, making them a powerful tool in many fields. Some of the most common applications include:<\/p>\n<h3 style=\"text-align: justify;\"><strong>1. Computer Networks<\/strong><\/h3>\n<p style=\"text-align: justify;\">Graphs are used to model computer networks, where vertices represent computers or devices, and edges represent communication links. This allows for efficient routing and network analysis.<\/p>\n<h3 style=\"text-align: justify;\"><strong>2. Social Networks<\/strong><\/h3>\n<p style=\"text-align: justify;\">In social networks, graphs represent relationships between users. Vertices represent users, and edges represent connections, such as friendships or followers.<\/p>\n<h3 style=\"text-align: justify;\"><strong>3. Transportation Networks<\/strong><\/h3>\n<p style=\"text-align: justify;\">Graphs model transportation systems, where vertices represent locations, and edges represent routes or connections. This application is crucial for route optimization and traffic management.<\/p>\n<h3 style=\"text-align: justify;\"><strong>4. Biology<\/strong><\/h3>\n<p style=\"text-align: justify;\">Graphs are used in biology to model various systems, such as food webs, where vertices represent species and edges represent predator-prey relationships.<\/p>\n<h3 style=\"text-align: justify;\"><strong>5. Project Management<\/strong><\/h3>\n<p style=\"text-align: justify;\">In project management, graphs represent tasks and dependencies. Vertices represent tasks, and directed edges represent dependencies, helping in scheduling and resource allocation.<\/p>\n<table>\n<thead>\n<tr>\n<th>Application<\/th>\n<th>Description<\/th>\n<th>Example<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Computer Networks<\/td>\n<td>Represents computers\/devices and communication links<\/td>\n<td>Internet routing<\/td>\n<\/tr>\n<tr>\n<td>Social Networks<\/td>\n<td>Represents users and their relationships<\/td>\n<td>Facebook, Twitter<\/td>\n<\/tr>\n<tr>\n<td>Transportation Networks<\/td>\n<td>Represents locations and routes<\/td>\n<td>Airline route maps<\/td>\n<\/tr>\n<tr>\n<td>Biology<\/td>\n<td>Models systems such as food webs and protein interactions<\/td>\n<td>Food chain analysis<\/td>\n<\/tr>\n<tr>\n<td>Project Management<\/td>\n<td>Represents tasks and dependencies<\/td>\n<td>Gantt charts, PERT charts<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2 style=\"text-align: justify;\"><strong>Advantages of Using Graphs<\/strong><\/h2>\n<p style=\"text-align: justify;\">Graphs offer several advantages in mathematical modeling and problem-solving:<\/p>\n<ul style=\"text-align: justify;\">\n<li><strong>Visualization:<\/strong> Graphs provide a clear and visual way to represent relationships, making complex systems easier to understand.<\/li>\n<li><strong>Efficiency:<\/strong> Graphs enable efficient algorithms for searching, sorting, and optimizing within networks.<\/li>\n<li><strong>Versatility:<\/strong> Graphs can represent various types of relationships and systems, making them applicable in numerous fields.<\/li>\n<li><strong>Problem Solving:<\/strong> Many real-world problems can be reduced to graph problems, allowing for the application of well-established algorithms.<\/li>\n<\/ul>\n<h2 style=\"text-align: justify;\"><strong>Challenges and Limitations<\/strong><\/h2>\n<p style=\"text-align: justify;\">Despite their advantages, graphs also present certain challenges:<\/p>\n<ul style=\"text-align: justify;\">\n<li><strong>Complexity:<\/strong> Large graphs can become complex and difficult to manage, especially when representing extensive networks with numerous vertices and edges.<\/li>\n<li><strong>Storage:<\/strong> Representing large graphs requires significant memory, especially in dense graphs with many connections.<\/li>\n<li><strong>Computational Limits:<\/strong> Some graph problems, such as the traveling salesman problem, are computationally intensive and difficult to solve efficiently.<\/li>\n<\/ul>\n<h2 style=\"text-align: justify;\"><strong>Evolution of Graphs<\/strong><\/h2>\n<p style=\"text-align: justify;\">Graphs as a mathematical concept have a rich history, dating back to the 18th century. The Swiss mathematician Leonhard Euler is credited with the development of graph theory through his work on the Seven Bridges of K\u00f6nigsberg problem. Euler&#8217;s exploration laid the foundation for modern graph theory, which has since evolved into a critical area of study in discrete mathematics.<\/p>\n<p style=\"text-align: justify;\">Graphs are a fundamental tool in mathematics, providing a versatile and powerful way to represent and analyze relationships between entities. Whether used in computer networks, social media, transportation, biology, or project management, graphs play an essential role in solving real-world problems. Understanding the different types of graphs, their representations, and applications is crucial for anyone studying mathematics, computer science, or related fields.<\/p>\n<h3 style=\"text-align: justify;\"><strong>Introduction to Graph FAQs<\/strong><\/h3>\n<p style=\"text-align: justify;\">\t\t<div class=\"wp-faq-schema-wrap\">\n\t\t\t\t\t\t<div class=\"wp-faq-schema-items\">\n\t\t\t\t\t\t\t\t\t<h3>What is the basic definition of a graph in mathematics?<\/h3>\n\t\t\t\t\t<div class=\"\">\n\t\t\t\t\t\t<p>A graph in mathematics is a collection of vertices (nodes) connected by edges (links) used to represent relationships between pairs of objects or entities.<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<h3>How are graphs used in computer networks?<\/h3>\n\t\t\t\t\t<div class=\"\">\n\t\t\t\t\t\t<p>In computer networks, graphs model the connections between devices or computers, where vertices represent devices, and edges represent communication links.<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<h3>What is the difference between an undirected and a directed graph?<\/h3>\n\t\t\t\t\t<div class=\"\">\n\t\t\t\t\t\t<p>An undirected graph has edges with no direction, meaning the connection is bidirectional, while a directed graph has edges with direction, indicating a one-way relationship.<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<h3>What are some common applications of graphs in real life?<\/h3>\n\t\t\t\t\t<div class=\"\">\n\t\t\t\t\t\t<p>Graphs are commonly used in social networks, transportation systems, computer networks, biology (e.g., food webs), and project management.<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<h3>What is the significance of Euler&#039;s work in the history of graph theory?<\/h3>\n\t\t\t\t\t<div class=\"\">\n\t\t\t\t\t\t<p>Euler's work on the Seven Bridges of K\u00f6nigsberg problem in the 18th century laid the foundation for modern graph theory, marking the beginning of the systematic study of graphs.<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Graphs are a fundamental concept in mathematics, particularly in the study of discrete structures and data representation. They play a crucial role in various fields, including computer science, engineering, economics, and more. This article will provide a detailed explanation of what graphs are in the context of mathematics, their types, applications, and how they are [&hellip;]<\/p>\n","protected":false},"author":55,"featured_media":286590,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4873],"tags":[9331,9328,9329,9330,9327],"class_list":["post-286586","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-maths","tag-data-representation","tag-graph-theory","tag-graph-types","tag-math-concepts","tag-maths-graphs"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Graphs in Maths: Types, Applications and Significance<\/title>\n<meta name=\"description\" content=\"Explore the concept of graphs in mathematics, covering their definition, types, applications, and significance. Learn how graphs represent relationships between entities and are used in various fields like computer networks, social media, and biology.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.aakash.ac.in\/blog\/graphs-in-maths-types-applications-and-significance\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Graphs in Maths: Types, Applications and Significance\" \/>\n<meta property=\"og:description\" content=\"Explore the concept of graphs in mathematics, covering their definition, types, applications, and significance. Learn how graphs represent relationships between entities and are used in various fields like computer networks, social media, and biology.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.aakash.ac.in\/blog\/graphs-in-maths-types-applications-and-significance\/\" \/>\n<meta property=\"og:site_name\" content=\"Aakash Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/aakasheducation\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/svaishnava1?mibextid=ZbWKwL\" \/>\n<meta property=\"article:published_time\" content=\"2024-08-16T05:56:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blogcdn.aakash.ac.in\/wordpress_media\/2024\/08\/Who-Should-Opt-for-IIT-Foundation-Classes-3.png\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"420\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Aesl\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@AESL_Official\" \/>\n<meta name=\"twitter:site\" content=\"@AESL_Official\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Aesl\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Graphs in Maths: Types, Applications and Significance","description":"Explore the concept of graphs in mathematics, covering their definition, types, applications, and significance. Learn how graphs represent relationships between entities and are used in various fields like computer networks, social media, and biology.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.aakash.ac.in\/blog\/graphs-in-maths-types-applications-and-significance\/","og_locale":"en_US","og_type":"article","og_title":"Graphs in Maths: Types, Applications and Significance","og_description":"Explore the concept of graphs in mathematics, covering their definition, types, applications, and significance. Learn how graphs represent relationships between entities and are used in various fields like computer networks, social media, and biology.","og_url":"https:\/\/www.aakash.ac.in\/blog\/graphs-in-maths-types-applications-and-significance\/","og_site_name":"Aakash Blog","article_publisher":"https:\/\/www.facebook.com\/aakasheducation","article_author":"https:\/\/www.facebook.com\/svaishnava1?mibextid=ZbWKwL","article_published_time":"2024-08-16T05:56:45+00:00","og_image":[{"width":600,"height":420,"url":"https:\/\/blogcdn.aakash.ac.in\/wordpress_media\/2024\/08\/Who-Should-Opt-for-IIT-Foundation-Classes-3.png","type":"image\/png"}],"author":"Aesl","twitter_card":"summary_large_image","twitter_creator":"@AESL_Official","twitter_site":"@AESL_Official","twitter_misc":{"Written by":"Aesl","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.aakash.ac.in\/blog\/graphs-in-maths-types-applications-and-significance\/","url":"https:\/\/www.aakash.ac.in\/blog\/graphs-in-maths-types-applications-and-significance\/","name":"Graphs in Maths: Types, Applications and Significance","isPartOf":{"@id":"https:\/\/www.aakash.ac.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.aakash.ac.in\/blog\/graphs-in-maths-types-applications-and-significance\/#primaryimage"},"image":{"@id":"https:\/\/www.aakash.ac.in\/blog\/graphs-in-maths-types-applications-and-significance\/#primaryimage"},"thumbnailUrl":"https:\/\/blogcdn.aakash.ac.in\/wordpress_media\/2024\/08\/Who-Should-Opt-for-IIT-Foundation-Classes-3.png","datePublished":"2024-08-16T05:56:45+00:00","author":{"@id":"https:\/\/www.aakash.ac.in\/blog\/#\/schema\/person\/1452ea2a417b9cba98375caa3be600f8"},"description":"Explore the concept of graphs in mathematics, covering their definition, types, applications, and significance. Learn how graphs represent relationships between entities and are used in various fields like computer networks, social media, and biology.","breadcrumb":{"@id":"https:\/\/www.aakash.ac.in\/blog\/graphs-in-maths-types-applications-and-significance\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.aakash.ac.in\/blog\/graphs-in-maths-types-applications-and-significance\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.aakash.ac.in\/blog\/graphs-in-maths-types-applications-and-significance\/#primaryimage","url":"https:\/\/blogcdn.aakash.ac.in\/wordpress_media\/2024\/08\/Who-Should-Opt-for-IIT-Foundation-Classes-3.png","contentUrl":"https:\/\/blogcdn.aakash.ac.in\/wordpress_media\/2024\/08\/Who-Should-Opt-for-IIT-Foundation-Classes-3.png","width":600,"height":420,"caption":"Introduction to Graphs"},{"@type":"BreadcrumbList","@id":"https:\/\/www.aakash.ac.in\/blog\/graphs-in-maths-types-applications-and-significance\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.aakash.ac.in\/blog\/"},{"@type":"ListItem","position":2,"name":"Maths","item":"https:\/\/www.aakash.ac.in\/blog\/category\/maths\/"},{"@type":"ListItem","position":3,"name":"Graphs in Maths: Types, Applications and Significance"}]},{"@type":"WebSite","@id":"https:\/\/www.aakash.ac.in\/blog\/#website","url":"https:\/\/www.aakash.ac.in\/blog\/","name":"Aakash Blog","description":"Medical, IIT-JEE &amp; Foundations","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.aakash.ac.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.aakash.ac.in\/blog\/#\/schema\/person\/1452ea2a417b9cba98375caa3be600f8","name":"Aesl","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.aakash.ac.in\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/50f70844655542f6ac5a4bc6d9ad110cf35c64e0f731137008cbc823a6406253?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/50f70844655542f6ac5a4bc6d9ad110cf35c64e0f731137008cbc823a6406253?s=96&d=mm&r=g","caption":"Aesl"},"sameAs":["http:\/\/www.aakash.ac.in","https:\/\/www.facebook.com\/svaishnava1?mibextid=ZbWKwL","https:\/\/www.instagram.com\/whatsupshanky?igsh=MXRqb2FnZGZxbGU1cQ==","https:\/\/www.linkedin.com\/in\/shashank-vaishnava-6716412a0"],"url":"https:\/\/www.aakash.ac.in\/blog\/author\/shashank\/"}]}},"_links":{"self":[{"href":"https:\/\/www.aakash.ac.in\/blog\/wp-json\/wp\/v2\/posts\/286586","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.aakash.ac.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.aakash.ac.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.aakash.ac.in\/blog\/wp-json\/wp\/v2\/users\/55"}],"replies":[{"embeddable":true,"href":"https:\/\/www.aakash.ac.in\/blog\/wp-json\/wp\/v2\/comments?post=286586"}],"version-history":[{"count":2,"href":"https:\/\/www.aakash.ac.in\/blog\/wp-json\/wp\/v2\/posts\/286586\/revisions"}],"predecessor-version":[{"id":286591,"href":"https:\/\/www.aakash.ac.in\/blog\/wp-json\/wp\/v2\/posts\/286586\/revisions\/286591"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.aakash.ac.in\/blog\/wp-json\/wp\/v2\/media\/286590"}],"wp:attachment":[{"href":"https:\/\/www.aakash.ac.in\/blog\/wp-json\/wp\/v2\/media?parent=286586"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.aakash.ac.in\/blog\/wp-json\/wp\/v2\/categories?post=286586"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.aakash.ac.in\/blog\/wp-json\/wp\/v2\/tags?post=286586"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}