Given:
- P is the set of all people,
- Man(x): x is a man,
- Woman(x): x is a woman,
- Child(x, y): x is a child of y,
- Younger(x, y): x is younger than y.
Express in the form of a formula: 'Bernard has a younger brother'.
I begin with stating some facts (assuming a traditional family composition):
- There is some $p \in P$ such that $p$ and Bernard share a common father and mother,
- So there is some $m \in P$ and a $w \in P$ such that Man(m) and Woman(w) and these two, have given birth to both Bernard and $p$,
- Hence: Child(Bernard, m), Child(Bernard, w) and Child(p, m) and Child(p, w),
- Furthermore we know that this $p$ is younger than Bernard, thus: Younger(p, Bernard),
Putting it all together $$\exists m, p, w [(m, p, w) \in P: Man(p) \land Younger(p, Bernard) \land (Man(m) \land Child(Bernard, m) \land (Woman(w) \land Child(Bernard, w) \rightarrow Child(p, m)\land Child(p, w))]$$
Does this correctly express this idea? Perhaps I need a bi-implication?
Let the constant $b$ represent Bernard, for brevity.
$$\tag{1} \exists y \in P: \Big(\operatorname{Younger}(y,b) \wedge \operatorname{Man}(y) \wedge \exists x\in P:\big(\operatorname{Child}(b,x)\wedge \operatorname{Child}(y,x)\big)\Big)$$
"There is some person who is younger than Bernard, and is a man, and both Bernard and that someone are both a child of some same person."
Alternatively if half brothers are not allowed.
$$\tag{2} \exists y \in P: \Big(\operatorname{Younger}(y,b) \wedge \operatorname{Man}(y) \wedge \forall x\in P:\big(\operatorname{Child}(b,x)\to \operatorname{Child}(y,x)\big)\Big)$$
"There is some person who is younger than Bernard, and is a man, and is a Child of everyone of whom Bernard is a Child of."
Remark: Of course, here we are assuming that Bernard didn't spontaneously generate, and that being an orphan doesn't mean the negation of the existence of parents.
Edit: We're also assuming $\rm Man$ is not age dependent, and that being a boy qualifies.
Edit 2: We're also assuming for (2) that $\rm Child$ is defined biologically and not legally (by adoption or remarriage). Though the later works for (1) which does not require a "traditional" family unit.