I have this statement in FOL: $$∀x. (\mathrm{smart}(x) \lor ¬\mathrm{student}(x))$$ The natural language translation is$$ \text{All students are smart.} $$ I am not sure how this is concluded from FOL because it just says $x$ is either smart or not a student.
Can I convert the FOL as follows in order to conclude this statement? $$∀x. (\mathrm{smart}(x) \lor ¬\mathrm{student}(x))\\ ∀x. (¬\mathrm{student}(x) \lor \mathrm{smart}(x))\\ ∀x. (\mathrm{student}(x) → \mathrm{smart}(x)) $$
Correction, it says: everything is smart or not a student.
So clearly: if any thing is a student, then it must be smart.
Yes. $\forall x~(\def\smart{\operatorname{smart}}\smart(x)\vee\neg\def\student{\operatorname{student}}\student(x))~\equiv~\forall x~(\student(x)\to\smart(x))$