Creando el conjunto A
en R:
Conjunto_A<-c(15,11)
Conjunto_A
## [1] 15 11
Creando el conjunto B
en R:
Conjunto_B<-c(13,11)
Conjunto_B
## [1] 13 11
A
, B
en un diagrama de Venn:## (polygon[GRID.polygon.1], polygon[GRID.polygon.2], polygon[GRID.polygon.3], polygon[GRID.polygon.4], text[GRID.text.5], text[GRID.text.6], text[GRID.text.7], text[GRID.text.8], text[GRID.text.9])
Creando el conjunto X
en R:
Conjunto_X<-c(1,4,7,10)
Conjunto_X
## [1] 1 4 7 10
Creando el conjunto Y
en R:
Conjunto_Y<-c(1,3,6,10)
Conjunto_Y
## [1] 1 3 6 10
Creando el conjunto Z
en R:
Conjunto_Z<-c(1,3,4,5)
Conjunto_Z
## [1] 1 3 4 5
X
, Y
, Z
en un diagrama de Venn:## (polygon[GRID.polygon.10], polygon[GRID.polygon.11], polygon[GRID.polygon.12], polygon[GRID.polygon.13], polygon[GRID.polygon.14], polygon[GRID.polygon.15], text[GRID.text.16], text[GRID.text.17], text[GRID.text.18], text[GRID.text.19], text[GRID.text.20], text[GRID.text.21], text[GRID.text.22], text[GRID.text.23], text[GRID.text.24], text[GRID.text.25])
Revisa el video Intersection and union of sets
, disponible en https://www.youtube.com/watch?v=jAfNg3ylZAI
y pon en práctica lo que has aprendido.
Esta obra fue generada mediante R en October 12, 2020 y forma parte de las actividades realizadas en las materias de Matemáticas I y Taller III, Facultad de Economía, UNAM. Esta obra está bajo una licencia de Creative Commons Reconocimiento-NoComercial-CompartirIgual 4.0 Internacional. Creative Commons (CC).