MaxCut

Score: edge(s) cut ✓ Maximum Cut Found!
Level 1
6 nodes
6 edges
Level 2
24 nodes
38 edges
Custom

10 0.30
0 1 Left (0) Right (1) Select a level above to begin
cut edge uncut edge left (0) right (1) unassigned

Real-world applications of MaxCut

Social networks — Finding communities in social networks.

Physics — The Ising model of magnetism, where atoms have spin up or spin down and interact with neighbors, maps onto MaxCut.

Circuit design — When laying out a circuit board, you want to minimize wires crossing between two regions - this is the closely-related MinCut problem!

Image processing — Separating an image into foreground and background.

Computer science — Computer scientists study MaxCut because it is "NP-hard", meaning that it is just as hard to solve as a bunch of other important problems. If you find a good algorithm for MaxCut, it can be used for all these other problems!

MaxCut

Move each node to the left (0) or right (1)

Your score is the number of edges that are cut by the dashed line between left (0) and right (1)

Try to MAXimize the number of edges CUT — find the MaxCut!