What is the parent node of a binary heap when you have the child node?
1) Cannot be determined
2) The node at index (child_index - 1) / 2
3) The node at index (child_index + 1) / 2
4) The node at index (child_index - 2) / 2