Why are products called minterms and sums called maxterms?

后端 未结 5 1860
被撕碎了的回忆
被撕碎了的回忆 2021-01-31 05:57

Do they have a reason for doing so? I mean, in the sum of minterms, you look for the terms with the output 1; I don\'t get why they call it \"minterms.\" Why not maxterms becaus

5条回答
  •  甜味超标
    2021-01-31 06:58

    min(0,0) = 0
    min(0,1) = 0
    min(1,0) = 0
    min(1,1) = 1
    

    So minimum is pretty much like logical AND.

    max(0,0) = 0
    max(0,1) = 1
    max(1,0) = 1
    max(1,1) = 1
    

    So maximum is pretty much like logical OR.

提交回复
热议问题