Modeling problems using graphsModeling a (rather silly) magnet problem using graphsAdding metric to matroids in order to describe graphs whose vertices are points in Euclidean spaceConnectivity of random graphsRelabelling players in a tournamentHow to model a real-world graphical structure into a mathematical formulation?Average Total Time between EventsOn the chess board few squares are marked. Showthat the minimal number of ranks and files which cover all markedModel selectionTeam Ranking Model vs Graph Theory ModelLearning generative models of graphs

How to install cross-compiler on Ubuntu 18.04?

Unlock My Phone! February 2018

What is an equivalently powerful replacement spell for the Yuan-Ti's Suggestion spell?

Is it possible to map the firing of neurons in the human brain so as to stimulate artificial memories in someone else?

ssTTsSTtRrriinInnnnNNNIiinngg

How dangerous is XSS

My ex-girlfriend uses my Apple ID to log in to her iPad. Do I have to give her my Apple ID password to reset it?

Is this answer explanation correct?

What are the G forces leaving Earth orbit?

How can saying a song's name be a copyright violation?

Are British MPs missing the point, with these 'Indicative Votes'?

Theorists sure want true answers to this!

Finding the error in an argument

Avoiding the "not like other girls" trope?

What's the meaning of "Sollensaussagen"?

In Bayesian inference, why are some terms dropped from the posterior predictive?

Why is it a bad idea to hire a hitman to eliminate most corrupt politicians?

Does int main() need a declaration on C++?

What historical events would have to change in order to make 19th century "steampunk" technology possible?

How to find if SQL server backup is encrypted with TDE without restoring the backup

How to show a landlord what we have in savings?

How seriously should I take size and weight limits of hand luggage?

How to stretch the corners of this image so that it looks like a perfect rectangle?

Where would I need my direct neural interface to be implanted?



Modeling problems using graphs


Modeling a (rather silly) magnet problem using graphsAdding metric to matroids in order to describe graphs whose vertices are points in Euclidean spaceConnectivity of random graphsRelabelling players in a tournamentHow to model a real-world graphical structure into a mathematical formulation?Average Total Time between EventsOn the chess board few squares are marked. Showthat the minimal number of ranks and files which cover all markedModel selectionTeam Ranking Model vs Graph Theory ModelLearning generative models of graphs













0












$begingroup$


I was wondering how can I learn how to model problems using some classical models in graph theory (graph coloring, vertex cover, matching, maximum cliques, independent sets and so on)
For example, I want to learn how to model the following problems :



  1. Can we "cut" without lifting the pencil every edge in the following figure. We must pass once and only once through each edge ? (Hint : use a graph model) FIG 1


  2. Mr. Dupont wants to rent his apartment for a given period. She received several offers. Every proposition has a price and a period. Model this problem using a graph structure.


  3. Chess : How to place 8 queens on a chess board so that no two queens threaten each other? How many queens do we need so that they control all of the squares? Can a knight run throw all of the squares while passing from each square once and only once?


  4. Schedule : Assume we have $k$ teams ($k$ is an even number). Each team must play with each other team twice ( $2 times (k-1) = 2k-2$ parties)
    How to determine a valid affectation (using a graph-based model).
    How to modify the problem to respect the following constraint : Some parties cannot occur simultaneously**


  5. Frequencies : A phone operator wants to dynamically allocate frequencies to users.
    If two users are using the same frequency in the same zone, we could have some technical issues.
    How to allocate frequencies in a way such that a third user cannot be in the same zone as two users with the same frequency. We want to minimize the number of frequencies used.
    We assume that users don't move.


N.B: I am not looking for answers to those questions, I am looking for references(books/ online courses; lecture notes etc.) that can teach me how to model similar problems using graph structures and classic models










share|cite|improve this question









$endgroup$











  • $begingroup$
    I would say that these problems are classic and well-studied, so almost every good book on graph theory would be appropriate. Personally, I recommend you two books: "Introduction to Algorithms" by Thomas H. Cormen for studying algorithms on graphs and Graph theory by F. Harary for non-algorithmic part of graph theory.
    $endgroup$
    – Vladislav
    Mar 20 at 21:22










  • $begingroup$
    I've took alook at Harary's book don't think it focuses on the modeling part though
    $endgroup$
    – Hilbert Hotel
    Mar 21 at 21:20










  • $begingroup$
    I can find most of these on youtube from memory . but they don't graph it. I think I could turn these into graphs though.
    $endgroup$
    – Roddy MacPhee
    Mar 22 at 0:25
















0












$begingroup$


I was wondering how can I learn how to model problems using some classical models in graph theory (graph coloring, vertex cover, matching, maximum cliques, independent sets and so on)
For example, I want to learn how to model the following problems :



  1. Can we "cut" without lifting the pencil every edge in the following figure. We must pass once and only once through each edge ? (Hint : use a graph model) FIG 1


  2. Mr. Dupont wants to rent his apartment for a given period. She received several offers. Every proposition has a price and a period. Model this problem using a graph structure.


  3. Chess : How to place 8 queens on a chess board so that no two queens threaten each other? How many queens do we need so that they control all of the squares? Can a knight run throw all of the squares while passing from each square once and only once?


  4. Schedule : Assume we have $k$ teams ($k$ is an even number). Each team must play with each other team twice ( $2 times (k-1) = 2k-2$ parties)
    How to determine a valid affectation (using a graph-based model).
    How to modify the problem to respect the following constraint : Some parties cannot occur simultaneously**


  5. Frequencies : A phone operator wants to dynamically allocate frequencies to users.
    If two users are using the same frequency in the same zone, we could have some technical issues.
    How to allocate frequencies in a way such that a third user cannot be in the same zone as two users with the same frequency. We want to minimize the number of frequencies used.
    We assume that users don't move.


N.B: I am not looking for answers to those questions, I am looking for references(books/ online courses; lecture notes etc.) that can teach me how to model similar problems using graph structures and classic models










share|cite|improve this question









$endgroup$











  • $begingroup$
    I would say that these problems are classic and well-studied, so almost every good book on graph theory would be appropriate. Personally, I recommend you two books: "Introduction to Algorithms" by Thomas H. Cormen for studying algorithms on graphs and Graph theory by F. Harary for non-algorithmic part of graph theory.
    $endgroup$
    – Vladislav
    Mar 20 at 21:22










  • $begingroup$
    I've took alook at Harary's book don't think it focuses on the modeling part though
    $endgroup$
    – Hilbert Hotel
    Mar 21 at 21:20










  • $begingroup$
    I can find most of these on youtube from memory . but they don't graph it. I think I could turn these into graphs though.
    $endgroup$
    – Roddy MacPhee
    Mar 22 at 0:25














0












0








0





$begingroup$


I was wondering how can I learn how to model problems using some classical models in graph theory (graph coloring, vertex cover, matching, maximum cliques, independent sets and so on)
For example, I want to learn how to model the following problems :



  1. Can we "cut" without lifting the pencil every edge in the following figure. We must pass once and only once through each edge ? (Hint : use a graph model) FIG 1


  2. Mr. Dupont wants to rent his apartment for a given period. She received several offers. Every proposition has a price and a period. Model this problem using a graph structure.


  3. Chess : How to place 8 queens on a chess board so that no two queens threaten each other? How many queens do we need so that they control all of the squares? Can a knight run throw all of the squares while passing from each square once and only once?


  4. Schedule : Assume we have $k$ teams ($k$ is an even number). Each team must play with each other team twice ( $2 times (k-1) = 2k-2$ parties)
    How to determine a valid affectation (using a graph-based model).
    How to modify the problem to respect the following constraint : Some parties cannot occur simultaneously**


  5. Frequencies : A phone operator wants to dynamically allocate frequencies to users.
    If two users are using the same frequency in the same zone, we could have some technical issues.
    How to allocate frequencies in a way such that a third user cannot be in the same zone as two users with the same frequency. We want to minimize the number of frequencies used.
    We assume that users don't move.


N.B: I am not looking for answers to those questions, I am looking for references(books/ online courses; lecture notes etc.) that can teach me how to model similar problems using graph structures and classic models










share|cite|improve this question









$endgroup$




I was wondering how can I learn how to model problems using some classical models in graph theory (graph coloring, vertex cover, matching, maximum cliques, independent sets and so on)
For example, I want to learn how to model the following problems :



  1. Can we "cut" without lifting the pencil every edge in the following figure. We must pass once and only once through each edge ? (Hint : use a graph model) FIG 1


  2. Mr. Dupont wants to rent his apartment for a given period. She received several offers. Every proposition has a price and a period. Model this problem using a graph structure.


  3. Chess : How to place 8 queens on a chess board so that no two queens threaten each other? How many queens do we need so that they control all of the squares? Can a knight run throw all of the squares while passing from each square once and only once?


  4. Schedule : Assume we have $k$ teams ($k$ is an even number). Each team must play with each other team twice ( $2 times (k-1) = 2k-2$ parties)
    How to determine a valid affectation (using a graph-based model).
    How to modify the problem to respect the following constraint : Some parties cannot occur simultaneously**


  5. Frequencies : A phone operator wants to dynamically allocate frequencies to users.
    If two users are using the same frequency in the same zone, we could have some technical issues.
    How to allocate frequencies in a way such that a third user cannot be in the same zone as two users with the same frequency. We want to minimize the number of frequencies used.
    We assume that users don't move.


N.B: I am not looking for answers to those questions, I am looking for references(books/ online courses; lecture notes etc.) that can teach me how to model similar problems using graph structures and classic models







graph-theory book-recommendation mathematical-modeling






share|cite|improve this question













share|cite|improve this question











share|cite|improve this question




share|cite|improve this question










asked Mar 20 at 19:55









Hilbert HotelHilbert Hotel

233




233











  • $begingroup$
    I would say that these problems are classic and well-studied, so almost every good book on graph theory would be appropriate. Personally, I recommend you two books: "Introduction to Algorithms" by Thomas H. Cormen for studying algorithms on graphs and Graph theory by F. Harary for non-algorithmic part of graph theory.
    $endgroup$
    – Vladislav
    Mar 20 at 21:22










  • $begingroup$
    I've took alook at Harary's book don't think it focuses on the modeling part though
    $endgroup$
    – Hilbert Hotel
    Mar 21 at 21:20










  • $begingroup$
    I can find most of these on youtube from memory . but they don't graph it. I think I could turn these into graphs though.
    $endgroup$
    – Roddy MacPhee
    Mar 22 at 0:25

















  • $begingroup$
    I would say that these problems are classic and well-studied, so almost every good book on graph theory would be appropriate. Personally, I recommend you two books: "Introduction to Algorithms" by Thomas H. Cormen for studying algorithms on graphs and Graph theory by F. Harary for non-algorithmic part of graph theory.
    $endgroup$
    – Vladislav
    Mar 20 at 21:22










  • $begingroup$
    I've took alook at Harary's book don't think it focuses on the modeling part though
    $endgroup$
    – Hilbert Hotel
    Mar 21 at 21:20










  • $begingroup$
    I can find most of these on youtube from memory . but they don't graph it. I think I could turn these into graphs though.
    $endgroup$
    – Roddy MacPhee
    Mar 22 at 0:25
















$begingroup$
I would say that these problems are classic and well-studied, so almost every good book on graph theory would be appropriate. Personally, I recommend you two books: "Introduction to Algorithms" by Thomas H. Cormen for studying algorithms on graphs and Graph theory by F. Harary for non-algorithmic part of graph theory.
$endgroup$
– Vladislav
Mar 20 at 21:22




$begingroup$
I would say that these problems are classic and well-studied, so almost every good book on graph theory would be appropriate. Personally, I recommend you two books: "Introduction to Algorithms" by Thomas H. Cormen for studying algorithms on graphs and Graph theory by F. Harary for non-algorithmic part of graph theory.
$endgroup$
– Vladislav
Mar 20 at 21:22












$begingroup$
I've took alook at Harary's book don't think it focuses on the modeling part though
$endgroup$
– Hilbert Hotel
Mar 21 at 21:20




$begingroup$
I've took alook at Harary's book don't think it focuses on the modeling part though
$endgroup$
– Hilbert Hotel
Mar 21 at 21:20












$begingroup$
I can find most of these on youtube from memory . but they don't graph it. I think I could turn these into graphs though.
$endgroup$
– Roddy MacPhee
Mar 22 at 0:25





$begingroup$
I can find most of these on youtube from memory . but they don't graph it. I think I could turn these into graphs though.
$endgroup$
– Roddy MacPhee
Mar 22 at 0:25











0






active

oldest

votes












Your Answer





StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "69"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3155935%2fmodeling-problems-using-graphs%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Mathematics Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

Use MathJax to format equations. MathJax reference.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3155935%2fmodeling-problems-using-graphs%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Lowndes Grove History Architecture References Navigation menu32°48′6″N 79°57′58″W / 32.80167°N 79.96611°W / 32.80167; -79.9661132°48′6″N 79°57′58″W / 32.80167°N 79.96611°W / 32.80167; -79.9661178002500"National Register Information System"Historic houses of South Carolina"Lowndes Grove""+32° 48' 6.00", −79° 57' 58.00""Lowndes Grove, Charleston County (260 St. Margaret St., Charleston)""Lowndes Grove"The Charleston ExpositionIt Happened in South Carolina"Lowndes Grove (House), Saint Margaret Street & Sixth Avenue, Charleston, Charleston County, SC(Photographs)"Plantations of the Carolina Low Countrye

random experiment with two different functions on unit interval Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Random variable and probability space notionsRandom Walk with EdgesFinding functions where the increase over a random interval is Poisson distributedNumber of days until dayCan an observed event in fact be of zero probability?Unit random processmodels of coins and uniform distributionHow to get the number of successes given $n$ trials , probability $P$ and a random variable $X$Absorbing Markov chain in a computer. Is “almost every” turned into always convergence in computer executions?Stopped random walk is not uniformly integrable

How should I support this large drywall patch? Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?How do I cover large gaps in drywall?How do I keep drywall around a patch from crumbling?Can I glue a second layer of drywall?How to patch long strip on drywall?Large drywall patch: how to avoid bulging seams?Drywall Mesh Patch vs. Bulge? To remove or not to remove?How to fix this drywall job?Prep drywall before backsplashWhat's the best way to fix this horrible drywall patch job?Drywall patching using 3M Patch Plus Primer