0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

paizaでsympy その5

Last updated at Posted at 2019-01-25

概要

sympyが、魔法なので、paizaで、やってみた。
練習問題、やってみた。

問題

x,y,z を論理変数,Tを真,Fを偽とするとき,次の真理値表で示される関数 f(x,y,z) を表す論理式はどれか。ここでnは論理積,Uは論理和,~AはAの否定を表す。

x y z f
t t t t
t t f t
t f t t
t f f f
f t t f
f t f f
f f t t
f f f f

(xny)U(ynz)
(xny)U(~ynz)
(xny)U(~yn~z)
(xn~y)U(~yn~z)

サンプルコード

import sympy as sym

a = sym.POSform(['x', 'y', 'z'], [[1, 1, 1], [1, 1, 0], [1, 0, 1], [0, 0, 1]])
print (a)
b = sym.SOPform(['x', 'y', 'z'], [[1, 1, 1], [1, 1, 0], [1, 0, 1], [0, 0, 1]])
print (b)

結果

(y | z) & (x | ~y)
(x & y) | (z & ~y)

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?