When your question is answered use !solved to mark the question as resolved.
Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question run !howto ask.
28 messages · Page 1 of 1 (latest)
When your question is answered use !solved to mark the question as resolved.
Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question run !howto ask.
@dull oyster What do you have so far
not a = IF(F, a, b) but im not sure
Well, try it and see
Fill in this truth table:
a b | IF(F, a, b)
0 0 |
0 1 |
1 0 |
1 1 |
@dull oyster
0 0 | 0
0 1 | 1
1 0 | 0
1 1 | 1
So is it correct?
no
IF(b,a,b) for a and b
Does the truth table work?
Do you want a hint?
Well, the function shouldn't depend on b at all
how come its a and b
IF(b,a,T)
It shouldn't have b in it anywhere
IF(T,a,F)
Draw a truth table for that
are u sure not IF(b,a,b)
how do i know the values of IF(b,a,b) making the truth table tho?
a b | IF(b,a,b)
0 0 | 0
0 1 | 1
1 0 | 0
1 1 | 1
Does that truth table match what you should see for the function you're implementing?
@dull oyster
Please don't delete forum posts. They can be helpful to refer to later and other members can learn from them. In the future you can use !solved to close a post and mark a post as solved.
!solved