Plotting graph in Wolfram Mathmatica?

170 Views Asked by At

Which is the function that can plot me the graph K 7, 2 in mathematica? And after that to delete 2 edges?? Thanks for the help.

1

There are 1 best solutions below

4
On

Wolfram Mathematica has a great help with many examples. Also it does have its own community on StackExchange https://mathematica.stackexchange.com/ . You'd better address questions regarding Mathematica there

G1 = CompleteGraph[{7, 2}];
G2 = EdgeDelete[G1, {1 <-> 8, 2 <-> 8}];
GraphPlot[G1]
GraphPlot[G2]