+ 1
Can anyone Write a C++ code for the following nested quantifier to show its truth value. Domain is all real nos. âyâx(x+y= 0) ?
Problem
2 Answers
+ 2
Note that there is no way to store and evaluate irrational numbers (as machine code) since all variables have to be represented in a limited byte form. Consider approximation or changing domain (integer or rational)
Statement âyâx(x+y=0) is clearly false ie for any given y there is counter example xâ -y.
Following little program (simulates formal logic) asks you to enter y as integer and then enumerates possible counter examples:
https://code.sololearn.com/cLN1k4o0aq15/?ref=app
0
Thank u brother pascal.