{"id":208,"date":"2023-02-01T00:03:36","date_gmt":"2023-02-01T00:03:36","guid":{"rendered":"https:\/\/courses.lumenlearning.com\/ct-state-quantitative-reasoning\/chapter\/putting-it-together-set-theory\/"},"modified":"2023-02-01T00:03:36","modified_gmt":"2023-02-01T00:03:36","slug":"putting-it-together-set-theory","status":"publish","type":"chapter","link":"https:\/\/courses.lumenlearning.com\/ct-state-quantitative-reasoning\/chapter\/putting-it-together-set-theory\/","title":{"raw":"Putting It Together: Set Theory and Logic","rendered":"Putting It Together: Set Theory and Logic"},"content":{"raw":"\n[caption id=\"attachment_2379\" align=\"alignright\" width=\"285\"]<a href=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29171613\/Boole.jpg\"><img class=\"wp-image-2379\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29171613\/Boole-224x300.jpg\" alt=\"A colored sketch of George Boole wearing a black bowtie.\" width=\"285\" height=\"382\"><\/a> George Boole[\/caption]\n\nIn this module we\u2019ve seen how logic and valid arguments can be formalized using mathematical notation and a few basic rules. &nbsp;In fact when George Boole (1815-1864) first developed <strong>symbolic logic<\/strong> (or <strong>Boolean logic<\/strong>), he had the idea that his system could be used by lawyers, philosophers, and mathematicians alike to help put convoluted arguments on a firmer footing. &nbsp;Little did he realize that his system of \u201c<em>and<\/em>,\u201d \u201c<em>or<\/em>,\u201d and \u201c<em>not<\/em>\u201d operations would one day transform the world by ushering in the Digital Revolution and modern day computing.\n\n&nbsp;\n\nWhat is the connection between logic and computers? &nbsp;Instead of truth values <strong>T<\/strong> and <strong>F<\/strong>, digital computers rely on two <strong>states<\/strong>, either <em>on<\/em>(1) or <em>off<\/em>(0). &nbsp;This is because a computer consists of many <strong>circuits<\/strong>, which are electrical pathways that can either be closed to allow the current to flow, or open to break the connection. &nbsp;A \u201c1\u201d would signify a closed circuit while a \u201c0\u201d represents an open circuit.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nCertain components called <strong>gates<\/strong> allow the computer to open or close circuits based on input. &nbsp;For example, an AND gate has two input wires (A, B) and one output (C). &nbsp;Electricity will flow at C if and only if both A and B have current. &nbsp;Traditionally, the AND operation is written like multiplication; that is, A AND B = AB.\n\n<a href=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29172129\/andgate.png\"><img class=\"size-medium wp-image-2381 aligncenter\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29172129\/andgate-300x86.png\" alt=\"AND Gate\" width=\"300\" height=\"86\"><\/a>\n\n&nbsp;\n\nMultiplication seems to be a natural interpretation of AND when applied to the values 0 and 1. &nbsp;Just think about the truth table for the operation [latex]\\wedge[\/latex], replacing <strong>T<\/strong> by 1 and <strong>F<\/strong> by 0.\n<div>\n<table style=\"width: 50%;\">\n<tbody>\n<tr>\n<td>A<\/td>\n<td>B<\/td>\n<td>AB (A AND B)<\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>1<\/td>\n<td>1<\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>0<\/td>\n<td>0<\/td>\n<\/tr>\n<tr>\n<td>0<\/td>\n<td>1<\/td>\n<td>0<\/td>\n<\/tr>\n<tr>\n<td>0<\/td>\n<td>0<\/td>\n<td>0<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n&nbsp;\n\nThere is also an OR gate. &nbsp;Again, two inputs A and B determine the output C, however this time C = 1 if and only if either A or B (or both) is equal to 1. &nbsp;This operation, which corresponds to the logical expression [latex]A \\vee B[\/latex], is often interpreted as a kind of addition (A OR B = A + B), however it\u2019s not a perfect analogy because [latex]1+1=1[\/latex] in Boolean logic.\n\n<a href=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29172439\/orgate.png\"><img class=\"size-medium wp-image-2383 aligncenter\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29172439\/orgate-300x99.png\" alt=\"OR Gate\" width=\"300\" height=\"99\"><\/a>\n\n&nbsp;\n<div>\n<table style=\"width: 50%;\">\n<tbody>\n<tr>\n<td>A<\/td>\n<td>B<\/td>\n<td>A + B (A OR B)<\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>1<\/td>\n<td>1<\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>0<\/td>\n<td>1<\/td>\n<\/tr>\n<tr>\n<td>0<\/td>\n<td>1<\/td>\n<td>1<\/td>\n<\/tr>\n<tr>\n<td>0<\/td>\n<td>0<\/td>\n<td>0<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n&nbsp;\n\nFinally, there is a gate whose output is the opposite state as its input. &nbsp;So if the input (A) is 1, then the output (C) will be 0, and vice versa. &nbsp;This is called the NOT gate. &nbsp;You have encountered \u201cnot\u201d as the logical expression [latex]\\sim\\!\\textrm{A}[\/latex], but &nbsp;the usual notation in computer science for NOT A is [latex]\\overline{\\textrm{A}}[\/latex]. &nbsp;The gate along with its truth table shown below.\n\n<a href=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29172636\/notgate.png\"><img class=\"size-medium wp-image-2384 aligncenter\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29172636\/notgate-300x98.png\" alt=\"NOT Gate\" width=\"300\" height=\"98\"><\/a>\n\n&nbsp;\n<div>\n<table style=\"width: 50%;\">\n<tbody>\n<tr>\n<td>A<\/td>\n<td>[latex]\\overline{\\textrm{A}}[\/latex] (NOT A)<\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>0<\/td>\n<\/tr>\n<tr>\n<td>0<\/td>\n<td>1<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n&nbsp;\n\nMoreover, numerical values can be represented by a string of 1\u2019s and 0\u2019s in what we call <strong>binary notation<\/strong>. &nbsp;Then the basic operations of addition, subtraction, multiplication, and division of binary number can actually be accomplished using the right combination of gates, in other words by Boolean logical operations.\n\n&nbsp;\n\nHowever a proper discussion of binary arithmetical falls outside the scope of this discussion. &nbsp;Instead, let\u2019s use Boolean logic and to find a simpler circuit equivalent to the one shown.\n<p style=\"text-align: center;\"><a href=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29173420\/notanotb.png\"><img class=\"size-medium wp-image-2387 aligncenter\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29173420\/notanotb-300x138.png\" alt=\"Diagram for (NOT A) AND (NOT B)\" width=\"300\" height=\"138\"><\/a><\/p>\n&nbsp;\n\nThe given circuit has&nbsp;three gates. &nbsp;Can you find a circuit with only two gates that produces exactly the same output (Q) for all choices of input (A, B)?\n\n&nbsp;\n\nLet\u2019s translate the diagram into a Boolean expression. &nbsp;First, both A and B are negated to obtain [latex]\\overline{\\textrm{A}}[\/latex] and [latex]\\overline{\\textrm{B}}[\/latex], respectively. &nbsp;Those expressions in turn feed into the AND gate. &nbsp;So [latex]\\textrm{Q} =\\overline{\\textrm{A}} \\cdot \\overline{\\textrm{B}}[\/latex]. &nbsp;In terms of the logical operations you have studied in this module,\n<p style=\"text-align: center;\">[latex]\\textrm{Q}=\\overline{\\textrm{A}}\\cdot\\overline{\\textrm{B}}=(\\sim\\!\\textrm{A})\\wedge(\\sim\\!\\textrm{B})[\/latex]<\/p>\n&nbsp;\n\nYou may recognize the expression as one side of De Morgan\u2019s Law. &nbsp;Therefore, there is an equivalence,\n<p style=\"text-align: center;\">[latex](\\sim\\!\\textrm{A})\\wedge(\\sim\\!\\textrm{B})= \\;\\sim\\!(\\textrm{A} \\vee \\textrm{B}) = \\overline{\\textrm{A} + \\textrm{B}}[\/latex]<\/p>\n&nbsp;\n\nFinally, the last expression corresponds to a circuit diagram with only two gates, an OR and a NOT.\n\n<a href=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29173725\/ornotgate.png\"><img class=\"size-medium wp-image-2388 aligncenter\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29173725\/ornotgate-300x94.png\" alt=\"Diagram for NOT (A OR B)\" width=\"300\" height=\"94\"><\/a>\n\n&nbsp;\n","rendered":"<div id=\"attachment_2379\" style=\"width: 295px\" class=\"wp-caption alignright\"><a href=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29171613\/Boole.jpg\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-2379\" class=\"wp-image-2379\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29171613\/Boole-224x300.jpg\" alt=\"A colored sketch of George Boole wearing a black bowtie.\" width=\"285\" height=\"382\" \/><\/a><\/p>\n<p id=\"caption-attachment-2379\" class=\"wp-caption-text\">George Boole<\/p>\n<\/div>\n<p>In this module we\u2019ve seen how logic and valid arguments can be formalized using mathematical notation and a few basic rules. &nbsp;In fact when George Boole (1815-1864) first developed <strong>symbolic logic<\/strong> (or <strong>Boolean logic<\/strong>), he had the idea that his system could be used by lawyers, philosophers, and mathematicians alike to help put convoluted arguments on a firmer footing. &nbsp;Little did he realize that his system of \u201c<em>and<\/em>,\u201d \u201c<em>or<\/em>,\u201d and \u201c<em>not<\/em>\u201d operations would one day transform the world by ushering in the Digital Revolution and modern day computing.<\/p>\n<p>&nbsp;<\/p>\n<p>What is the connection between logic and computers? &nbsp;Instead of truth values <strong>T<\/strong> and <strong>F<\/strong>, digital computers rely on two <strong>states<\/strong>, either <em>on<\/em>(1) or <em>off<\/em>(0). &nbsp;This is because a computer consists of many <strong>circuits<\/strong>, which are electrical pathways that can either be closed to allow the current to flow, or open to break the connection. &nbsp;A \u201c1\u201d would signify a closed circuit while a \u201c0\u201d represents an open circuit.<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>Certain components called <strong>gates<\/strong> allow the computer to open or close circuits based on input. &nbsp;For example, an AND gate has two input wires (A, B) and one output (C). &nbsp;Electricity will flow at C if and only if both A and B have current. &nbsp;Traditionally, the AND operation is written like multiplication; that is, A AND B = AB.<\/p>\n<p><a href=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29172129\/andgate.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-2381 aligncenter\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29172129\/andgate-300x86.png\" alt=\"AND Gate\" width=\"300\" height=\"86\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<p>Multiplication seems to be a natural interpretation of AND when applied to the values 0 and 1. &nbsp;Just think about the truth table for the operation [latex]\\wedge[\/latex], replacing <strong>T<\/strong> by 1 and <strong>F<\/strong> by 0.<\/p>\n<div>\n<table style=\"width: 50%;\">\n<tbody>\n<tr>\n<td>A<\/td>\n<td>B<\/td>\n<td>AB (A AND B)<\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>1<\/td>\n<td>1<\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>0<\/td>\n<td>0<\/td>\n<\/tr>\n<tr>\n<td>0<\/td>\n<td>1<\/td>\n<td>0<\/td>\n<\/tr>\n<tr>\n<td>0<\/td>\n<td>0<\/td>\n<td>0<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p>&nbsp;<\/p>\n<p>There is also an OR gate. &nbsp;Again, two inputs A and B determine the output C, however this time C = 1 if and only if either A or B (or both) is equal to 1. &nbsp;This operation, which corresponds to the logical expression [latex]A \\vee B[\/latex], is often interpreted as a kind of addition (A OR B = A + B), however it\u2019s not a perfect analogy because [latex]1+1=1[\/latex] in Boolean logic.<\/p>\n<p><a href=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29172439\/orgate.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-2383 aligncenter\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29172439\/orgate-300x99.png\" alt=\"OR Gate\" width=\"300\" height=\"99\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<div>\n<table style=\"width: 50%;\">\n<tbody>\n<tr>\n<td>A<\/td>\n<td>B<\/td>\n<td>A + B (A OR B)<\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>1<\/td>\n<td>1<\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>0<\/td>\n<td>1<\/td>\n<\/tr>\n<tr>\n<td>0<\/td>\n<td>1<\/td>\n<td>1<\/td>\n<\/tr>\n<tr>\n<td>0<\/td>\n<td>0<\/td>\n<td>0<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p>&nbsp;<\/p>\n<p>Finally, there is a gate whose output is the opposite state as its input. &nbsp;So if the input (A) is 1, then the output (C) will be 0, and vice versa. &nbsp;This is called the NOT gate. &nbsp;You have encountered \u201cnot\u201d as the logical expression [latex]\\sim\\!\\textrm{A}[\/latex], but &nbsp;the usual notation in computer science for NOT A is [latex]\\overline{\\textrm{A}}[\/latex]. &nbsp;The gate along with its truth table shown below.<\/p>\n<p><a href=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29172636\/notgate.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-2384 aligncenter\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29172636\/notgate-300x98.png\" alt=\"NOT Gate\" width=\"300\" height=\"98\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<div>\n<table style=\"width: 50%;\">\n<tbody>\n<tr>\n<td>A<\/td>\n<td>[latex]\\overline{\\textrm{A}}[\/latex] (NOT A)<\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>0<\/td>\n<\/tr>\n<tr>\n<td>0<\/td>\n<td>1<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p>&nbsp;<\/p>\n<p>Moreover, numerical values can be represented by a string of 1\u2019s and 0\u2019s in what we call <strong>binary notation<\/strong>. &nbsp;Then the basic operations of addition, subtraction, multiplication, and division of binary number can actually be accomplished using the right combination of gates, in other words by Boolean logical operations.<\/p>\n<p>&nbsp;<\/p>\n<p>However a proper discussion of binary arithmetical falls outside the scope of this discussion. &nbsp;Instead, let\u2019s use Boolean logic and to find a simpler circuit equivalent to the one shown.<\/p>\n<p style=\"text-align: center;\"><a href=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29173420\/notanotb.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-2387 aligncenter\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29173420\/notanotb-300x138.png\" alt=\"Diagram for (NOT A) AND (NOT B)\" width=\"300\" height=\"138\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<p>The given circuit has&nbsp;three gates. &nbsp;Can you find a circuit with only two gates that produces exactly the same output (Q) for all choices of input (A, B)?<\/p>\n<p>&nbsp;<\/p>\n<p>Let\u2019s translate the diagram into a Boolean expression. &nbsp;First, both A and B are negated to obtain [latex]\\overline{\\textrm{A}}[\/latex] and [latex]\\overline{\\textrm{B}}[\/latex], respectively. &nbsp;Those expressions in turn feed into the AND gate. &nbsp;So [latex]\\textrm{Q} =\\overline{\\textrm{A}} \\cdot \\overline{\\textrm{B}}[\/latex]. &nbsp;In terms of the logical operations you have studied in this module,<\/p>\n<p style=\"text-align: center;\">[latex]\\textrm{Q}=\\overline{\\textrm{A}}\\cdot\\overline{\\textrm{B}}=(\\sim\\!\\textrm{A})\\wedge(\\sim\\!\\textrm{B})[\/latex]<\/p>\n<p>&nbsp;<\/p>\n<p>You may recognize the expression as one side of De Morgan\u2019s Law. &nbsp;Therefore, there is an equivalence,<\/p>\n<p style=\"text-align: center;\">[latex](\\sim\\!\\textrm{A})\\wedge(\\sim\\!\\textrm{B})= \\;\\sim\\!(\\textrm{A} \\vee \\textrm{B}) = \\overline{\\textrm{A} + \\textrm{B}}[\/latex]<\/p>\n<p>&nbsp;<\/p>\n<p>Finally, the last expression corresponds to a circuit diagram with only two gates, an OR and a NOT.<\/p>\n<p><a href=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29173725\/ornotgate.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-2388 aligncenter\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/courses-images\/wp-content\/uploads\/sites\/1141\/2017\/03\/29173725\/ornotgate-300x94.png\" alt=\"Diagram for NOT (A OR B)\" width=\"300\" height=\"94\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n\n\t\t\t <section class=\"citations-section\" role=\"contentinfo\">\n\t\t\t <h3>Candela Citations<\/h3>\n\t\t\t\t\t <div>\n\t\t\t\t\t\t <div id=\"citation-list-208\">\n\t\t\t\t\t\t\t <div class=\"licensing\"><div class=\"license-attribution-dropdown-subheading\">CC licensed content, Original<\/div><ul class=\"citation-list\"><li>Putting It Together: Set Theory. <strong>Authored by<\/strong>: Lumen Learning. <strong>License<\/strong>: <em><a target=\"_blank\" rel=\"license\" href=\"https:\/\/creativecommons.org\/licenses\/by\/4.0\/\">CC BY: Attribution<\/a><\/em><\/li><li>AND Gate. <strong>Authored by<\/strong>: Shaun Ault for Lumen Learning. <strong>License<\/strong>: <em><a target=\"_blank\" rel=\"license\" href=\"https:\/\/creativecommons.org\/licenses\/by\/4.0\/\">CC BY: Attribution<\/a><\/em><\/li><li>OR Gate. <strong>Authored by<\/strong>: Shaun Ault for Lumen Learning. <strong>License<\/strong>: <em><a target=\"_blank\" rel=\"license\" href=\"https:\/\/creativecommons.org\/licenses\/by\/4.0\/\">CC BY: Attribution<\/a><\/em><\/li><li>NOT Gate. <strong>Authored by<\/strong>: Shaun Ault for Lumen Learning. <strong>License<\/strong>: <em><a target=\"_blank\" rel=\"license\" href=\"https:\/\/creativecommons.org\/licenses\/by\/4.0\/\">CC BY: Attribution<\/a><\/em><\/li><li>(NOT A) AND (NOT B). <strong>Authored by<\/strong>: Shaun Ault for Lumen Learning. <strong>License<\/strong>: <em><a target=\"_blank\" rel=\"license\" href=\"https:\/\/creativecommons.org\/licenses\/by\/4.0\/\">CC BY: Attribution<\/a><\/em><\/li><li>NOT (A OR B). <strong>Authored by<\/strong>: Shaun Ault for Lumen Learning. <strong>License<\/strong>: <em><a target=\"_blank\" rel=\"license\" href=\"https:\/\/creativecommons.org\/licenses\/by\/4.0\/\">CC BY: Attribution<\/a><\/em><\/li><\/ul><div class=\"license-attribution-dropdown-subheading\">CC licensed content, Shared previously<\/div><ul class=\"citation-list\"><li>George Boole. <strong>Located at<\/strong>: <a target=\"_blank\" href=\"https:\/\/commons.wikimedia.org\/wiki\/File:George_Boole_color.jpg\">https:\/\/commons.wikimedia.org\/wiki\/File:George_Boole_color.jpg<\/a>. <strong>License<\/strong>: <em><a target=\"_blank\" rel=\"license\" href=\"https:\/\/creativecommons.org\/about\/pdm\">Public Domain: No Known Copyright<\/a><\/em><\/li><\/ul><\/div>\n\t\t\t\t\t\t <\/div>\n\t\t\t\t\t <\/div>\n\t\t\t <\/section>","protected":false},"author":538461,"menu_order":24,"template":"","meta":{"_candela_citation":"[{\"type\":\"original\",\"description\":\"Putting It Together: Set Theory\",\"author\":\"Lumen Learning\",\"organization\":\"\",\"url\":\"\",\"project\":\"\",\"license\":\"cc-by\",\"license_terms\":\"\"},{\"type\":\"cc\",\"description\":\"George Boole\",\"author\":\"\",\"organization\":\"\",\"url\":\"https:\/\/commons.wikimedia.org\/wiki\/File:George_Boole_color.jpg\",\"project\":\"\",\"license\":\"pd\",\"license_terms\":\"\"},{\"type\":\"original\",\"description\":\"AND Gate\",\"author\":\"Shaun Ault for Lumen Learning\",\"organization\":\"\",\"url\":\"\",\"project\":\"\",\"license\":\"cc-by\",\"license_terms\":\"\"},{\"type\":\"original\",\"description\":\"OR Gate\",\"author\":\"Shaun Ault for Lumen Learning\",\"organization\":\"\",\"url\":\"\",\"project\":\"\",\"license\":\"cc-by\",\"license_terms\":\"\"},{\"type\":\"original\",\"description\":\"NOT Gate\",\"author\":\"Shaun Ault for Lumen Learning\",\"organization\":\"\",\"url\":\"\",\"project\":\"\",\"license\":\"cc-by\",\"license_terms\":\"\"},{\"type\":\"original\",\"description\":\"(NOT A) AND (NOT B)\",\"author\":\"Shaun Ault for Lumen Learning\",\"organization\":\"\",\"url\":\"\",\"project\":\"\",\"license\":\"cc-by\",\"license_terms\":\"\"},{\"type\":\"original\",\"description\":\"NOT (A OR B)\",\"author\":\"Shaun Ault for Lumen Learning\",\"organization\":\"\",\"url\":\"\",\"project\":\"\",\"license\":\"cc-by\",\"license_terms\":\"\"}]","CANDELA_OUTCOMES_GUID":"97cd96e9-21b2-4edf-a1ab-88cc0c3d6326","pb_show_title":"on","pb_short_title":"","pb_subtitle":"","pb_authors":[],"pb_section_license":""},"chapter-type":[],"contributor":[],"license":[],"class_list":["post-208","chapter","type-chapter","status-publish","hentry"],"part":184,"_links":{"self":[{"href":"https:\/\/courses.lumenlearning.com\/ct-state-quantitative-reasoning\/wp-json\/pressbooks\/v2\/chapters\/208","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/courses.lumenlearning.com\/ct-state-quantitative-reasoning\/wp-json\/pressbooks\/v2\/chapters"}],"about":[{"href":"https:\/\/courses.lumenlearning.com\/ct-state-quantitative-reasoning\/wp-json\/wp\/v2\/types\/chapter"}],"author":[{"embeddable":true,"href":"https:\/\/courses.lumenlearning.com\/ct-state-quantitative-reasoning\/wp-json\/wp\/v2\/users\/538461"}],"version-history":[{"count":0,"href":"https:\/\/courses.lumenlearning.com\/ct-state-quantitative-reasoning\/wp-json\/pressbooks\/v2\/chapters\/208\/revisions"}],"part":[{"href":"https:\/\/courses.lumenlearning.com\/ct-state-quantitative-reasoning\/wp-json\/pressbooks\/v2\/parts\/184"}],"metadata":[{"href":"https:\/\/courses.lumenlearning.com\/ct-state-quantitative-reasoning\/wp-json\/pressbooks\/v2\/chapters\/208\/metadata\/"}],"wp:attachment":[{"href":"https:\/\/courses.lumenlearning.com\/ct-state-quantitative-reasoning\/wp-json\/wp\/v2\/media?parent=208"}],"wp:term":[{"taxonomy":"chapter-type","embeddable":true,"href":"https:\/\/courses.lumenlearning.com\/ct-state-quantitative-reasoning\/wp-json\/pressbooks\/v2\/chapter-type?post=208"},{"taxonomy":"contributor","embeddable":true,"href":"https:\/\/courses.lumenlearning.com\/ct-state-quantitative-reasoning\/wp-json\/wp\/v2\/contributor?post=208"},{"taxonomy":"license","embeddable":true,"href":"https:\/\/courses.lumenlearning.com\/ct-state-quantitative-reasoning\/wp-json\/wp\/v2\/license?post=208"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}