I have 2 questions regarding Bipartiteness with corresponding examples.
1) Can a non-connected graph be bipartite if it has an isolated vertex? Let's take the following graph:
I would say YES with this partition:
V1 = {A, D, G}
; V2 = {B, C, E, F, H}
But what confuses me is that A is isolated.
Is that a contradiction to the bipartitiness of G ?
2) Is there a rule about the uniqueness of the partitions ? Let's take the following graph:
choice1:
V1= {A, C}; V2 = {B, D}
choice2:
V1= {A, D}; V2 = {B, C}
Does it matter which one i choose?

