edited by
581 views
0 votes
0 votes
Express these statement using predicates and quantifiers.

A student must take at least 60 course hours ,or atleast 45 course hours and write a master’s thesis, and receive a grade no lower than a B in all required courses, to receive a master’s degree.
edited by

1 Answer

0 votes
0 votes
$N(x,n)$ = True if number of course hours by student x is greater than n

$M(x)$ = True if master's thesis is written by student $x$

$G(x,y,c)$ = Grade scored by student $x$ in course $y$ is atleast $c$

For a student $x$ to receive degree = $N(x,60)\,\vee\, (N(x,45)\, \wedge\,M(x)\,\wedge\,\forall y(G(x,y,B)))$
edited by

Related questions

4 votes
4 votes
1 answer
3