[Math] Prove a bipartite graph is connected

graph theorymatrices

I have the following Bipartite graph, how can I prove that it is connected?

enter image description here

I have been searching the Internet for hours but couldn't find a solution, I need a mathematical method to prove it is connected (not looking for solutions such as run DFS or BFS).

I am looking for a (sufficient) condition on a bipartite graph in terms of the vertex degrees, number of edges etc. that implies the graph is connected

Best Answer

These two graphs have the same degree sequence:

enter image description here

The one on the left is your (connected) graph, whereas the one on the right is disconnected. So, you're not going to find a mathematical sufficient condition for connectedness based on degree sequences alone.

Also, keep in mind that conditions like "if each vertex has a degree $\geq ( n − 1 ) / 2$ then the graph is connected" are also algorithmic. To verify connectedness, the reader still needs to check each vertex has degree $\geq ( n − 1 ) / 2$.