Vous êtes sur la page 1sur 11

BOUZY Thibaud TP n°2 Fonctions logiques à “circuits intégrés” 1A G2.

1
AUBERT Esteban 16.11.2020
A. Problème de serrure de coffre
Table de vérité:

A B C D S

0 0 0 0 0

0 0 0 1 0

0 0 1 0 0

0 0 1 1 0

0 1 0 0 0

0 1 0 1 0

0 1 1 0 0

0 1 1 1 1

1 0 0 0 0

1 0 0 1 0

1 0 1 0 1

1 0 1 1 1

1 1 0 0 1

1 1 0 1 1

1 1 1 0 1

1 1 1 1 1
Table de Karnaugh:
AB\CD 00 01 11 10

00 0 0 0 0

01 0 0 1 0

11 1 1 1 1

10 0 0 1 1

S=A.B+A.C+C.D.B
BOUZY Thibaud TP n°2 Fonctions logiques à “circuits intégrés” 1A G2.1
AUBERT Esteban 16.11.2020
B. Transcodeur Aïken vers BCD
Table de vérité:

Code Aïken Code BCD

A3 A2 A1 A0 S3 S2 S1 S0

0 0 0 0 0 0 0 0 0

1 0 0 0 1 0 0 0 1

2 0 0 1 0 0 0 1 0

3 0 0 1 1 0 0 1 1

4 0 1 0 0 0 1 0 0

5 1 0 1 1 0 1 0 1

6 1 1 0 0 0 1 1 0

7 1 1 0 1 0 1 1 1

8 1 1 1 0 1 0 0 0

9 1 1 1 1 1 0 0 1

Tables de Karnaugh:
A3A2\A1A0 00 01 11 10

00 0 0 0 0

01 0 X X X

11 0 0 1 1

10 X X 0 X
S3=A2.A1

A3A2\A1A0 00 01 11 10

00 0 0 0 0

01 1 X X X

11 1 1 0 0

10 X X 1 X
S2=A2.​A1​+A3.​A2
BOUZY Thibaud TP n°2 Fonctions logiques à “circuits intégrés” 1A G2.1
AUBERT Esteban 16.11.2020

A3A2\A1A0 00 01 11 10

00 0 0 1 1

01 0 X X X

11 1 1 0 0

10 X X 0 X
S1=​A3​.A1+A3.​A1

A3A2\A1A0 00 01 11 10

00 0 1 1 0

01 0 X X X

11 0 1 1 0

10 X X 1 X
S0=A0
Logigramme:

A3

A2

A1

A0
BOUZY Thibaud TP n°2 Fonctions logiques à “circuits intégrés” 1A G2.1
AUBERT Esteban 16.11.2020

C. Distributeur de boissons
Table de vérité:

e m c p E M C P

0 0 0 0 0 0 0 0

0 0 0 1 0 0 0 1

0 0 1 0 0 0 0 0

0 0 1 1 1 0 1 0

0 1 0 0 0 0 0 0

0 1 0 1 1 1 0 0

0 1 1 0 0 0 0 0

0 1 1 1 0 0 0 1

1 0 0 0 1 0 0 0

1 0 0 1 1 0 0 1

1 0 1 0 1 0 0 0

1 0 1 1 1 0 1 0

1 1 0 0 1 0 0 0

1 1 0 1 1 1 0 0

1 1 1 0 1 0 0 0

1 1 1 1 1 0 0 1
BOUZY Thibaud TP n°2 Fonctions logiques à “circuits intégrés” 1A G2.1
AUBERT Esteban 16.11.2020

Tables de Karnaugh:
ep\mc 00 01 11 10

00 0 0 0 0

01 0 1 0 1

11 1 1 1 1

10 1 1 1 1
E=e+p.​m.​c+p.​c​.m

ep\mc 00 01 11 10

00 0 0 0 0

01 0 0 0 1

11 0 0 0 1

10 0 0 0 0
M=p.m.​c

ep\mc 00 01 11 10

00 0 0 0 0

01 0 1 0 0

11 0 1 0 0

10 0 0 0 0
C=p.​m.​c

ep\mc 00 01 11 10

00 0 0 0 0

01 1 0 1 0

11 1 0 1 0

10 0 0 0 0
P=p.​m.c+p.​m.c
BOUZY Thibaud TP n°2 Fonctions logiques à “circuits intégrés” 1A G2.1
AUBERT Esteban 16.11.2020

Logigramme et​ simulation Logisim


BOUZY Thibaud TP n°2 Fonctions logiques à “circuits intégrés” 1A G2.1
AUBERT Esteban 16.11.2020
D. Contrôle de briques
Table de Vérité:

p l w e Q1 Q2 Q3

0 0 0 0 0 0 1

0 0 0 1 0 0 1

0 0 1 0 0 0 1

0 0 1 1 0 0 1

0 1 0 0 0 0 1

0 1 0 1 0 0 1

0 1 1 0 0 0 1

0 1 1 1 0 1 0

1 0 0 0 0 1 0

1 0 0 1 0 1 0

1 0 1 0 0 1 0

1 0 1 1 1 0 0

1 1 0 0 0 1 0

1 1 0 1 1 0 0

1 1 1 0 1 0 0

1 1 1 1 1 0 0
Table de Karnaugh:

pl\we 00 01 11 10

00 0 0 0 0

01 0 0 0 0

11 0 1 1 1

10 0 0 1 0
Q1=p.l(w+e)+p.w.e
BOUZY Thibaud TP n°2 Fonctions logiques à “circuits intégrés” 1A G2.1
AUBERT Esteban 16.11.2020

pl\we 00 01 11 10

00 0 0 0 0

01 0 0 1 0

11 1 0 0 0

10 1 1 0 1
Q2=p.w|.e|+(w|+e|).p.l|+p|.l.w.e

pl\we 00 01 11 10

00 1 1 1 1

01 1 1 0 1

11 0 0 0 0

10 0 0 0 0
Q3=p|.w|+p|.l|+p|.e|
BOUZY Thibaud TP n°2 Fonctions logiques à “circuits intégrés” 1A G2.1
AUBERT Esteban 16.11.2020

E. Jeu “Pierre Feuille Ciseaux” - Partie 1


Tables de vérité:

P1 F1 C1 P2 F2 C2 J1 J2

0 1 0 1 0 0 1 0

0 0 1 1 0 0 0 1

0 0 1 0 1 0 1 0

1 0 0 0 1 0 0 1

0 1 0 0 0 1 0 1

1 0 0 0 0 1 1 0

J1 = F1.P2+C1.F2+P1.C2
J2 = P2.C1+F2.P1+C2.F1
BOUZY Thibaud TP n°2 Fonctions logiques à “circuits intégrés” 1A G2.1
AUBERT Esteban 16.11.2020

F. Jeu “Pierre Feuille Ciseaux” - Partie 2


Tables de vérité:
P1ou F1 ou C1 ou a b c d e f g
P2 F2 C2

1 0 0 1 1 0 0 1 1 1

0 1 0 1 0 0 0 1 1 1

0 0 1 1 0 0 1 1 1 0

P1 = a.b.​c​.​d​.e.f.g
F1 = a.​b​.​c​.​d​.e.f.g
C1 = a.​b​.​c​.d.e.f.​g

P1 = a.b.​c​.​d​.e.f.g
F1 = a.​b​.​c​.​d​.e.f.g
C1 = a.​b​.​c​.d.e.f.​g
BOUZY Thibaud TP n°2 Fonctions logiques à “circuits intégrés” 1A G2.1
AUBERT Esteban 16.11.2020

Vous aimerez peut-être aussi