Search:

Type: Posts; User: jashburn

Search: Search took 0.11 seconds.

  1. Replies
    3
    Views
    1,047

    Re: problem with understanding boolean logic

    Took a bit of time to type up the explanation for exercise 3 properly, but here it is.

    Let:

    A be (x == y)
    B be (x == z)
    ¬A be NOT A (x != y) (and similarly ¬B be NOT B (x != z))
    A ∧ B be...
  2. Replies
    3
    Views
    1,047

    Re: problem with understanding boolean logic

    My boolean algrebra is rusty, but here goes...

    For exercise 4, De Morgan's Theorem states that (using Java notation):


    !(A && B) == !A || !B

    If you substitute A with (x <= y), and B with (y...
Results 1 to 2 of 2