Midterm 1 Review Topics

The first midterm opens October 10, 2016, and closes October 12, 2016 in the testing center. October 12th is a late day ($5.00); just be sure you check the testing center scheduler and policies to be sure your plan for when you are taking the test will work. The exam questions are short answers similar to the homework and quizzes, and you will indicate your answers (and show your work) directly on the exam. The exam is double-sided so check both sides of the page. The exam is closed book and closed notes, and is expected to take anywhere from 2 to 3 hours depending on your confidence level. The exam has ten problems covering the following topics:

  • Basic operations on sets including union, intersection, complement, set-difference (set-minus), etc. Use these operations to define new sets with specific characteristics. Homework 1. Sections 2.1-2.3 in the book.
  • Define set-difference in terms of union, intersection, and complement. Concatenate sets of strings. Compute the power set for a given set. Determine if a function is one-to-one, onto, or bijective. Homework 1. Sections 2.1-2.3 in the book.
  • Write regular expressions to define sets with specific characteristics. Working knowledge of concatenation, union, and Kleene star where working knowledge means you can define sets using those operations. Homework 2. Section 13.4.
  • Design deterministic finite state automaton (DFA) to recognize sets defined by regular expressions. Homework 2. Section 13.3. Good practice is to first write a regular expression for a language and then construct the DFA to recognize that language. You do not need to show edges to a reject state; rather, assume that any edge not shown means the automaton can no longer read any more input so that state it stops in determines if it accepts or rejects.
  • Write a grammar from an English specification. Homework 3. Section 13.1.
  • Show a right-most derivation and parse tree for a grammar given an input string. Homework 3 is good practice. See the lecture notes related to parsing too.
  • Left factor a grammar. Homework 3 and Homework 4 are good practice. See the lecture notes related to parsing too.
  • Remove left-recursion from a given grammar. Homework 4 is good practice.
  • Construct an LL(1) parse table for a given grammar. Homework 4 is good practice. See the lecture notes related to parsing too. Review your your lecture notes from class as we have worked 3 examples now.
  • Given an LL(1) parse table, use the table to parse a given input string. Show each step of the parse with the evolution of the stack and input string either as an evolving tree as done in class or a table. Homework 3 and Homework 4 are good practice. See the lecture notes related to parsing too.

The textbook has many exercises that can be used for practice; it has answers to all the odd problems to check work. Instructors and TAs will be happy to give feedback on problems you work if you would like. Best of luck.

Midterm 2 Review Topics

Runs in testing center Monday, November 7, through Wednesday, November 9. November 9 is a late day that costs $5. Be sure you check the testing center schedule and policies so your plan for the test is logically consistent. The exam questions are short answers as before and similar to the homework. You will indicate your answers (and show your work) directly on the exam. The exam is closed book and closed notes. It is expected to take at least 2 hours and up to 3 hours depending on your confidence level. The exam has 10 problems covering the following topics:

  • Show an expression is a tautology or that two expressions are logically equivalent using truth table and without using truth tables. (Homework 5)
  • Apply DeMorgan's law to negate expressions with quantifiers. Write equivalent expressions for quantifiers using disjunction, conjunction, and negation. Show two expressions with quantifiers are equivalent or not equivalent via counter example. (Homework 5)
  • Express English statements using multiple nested quantifiers. Apply De Morgan's law to negate expressions with multiple nested quantifiers. (Homework 6)
  • Express English statements in propositional logic. Prove a conclusions from a set of propositions and predicates without using resolution. Prove a conclusion from a set of propositions and predicates using only resolution. Proofs should look like those done in class being in tabular form with clearly labeled inference rules.(Homework 6)
  • Express English statements in predicate calculus. Use inference rules to prove a conclusion valid or invalid from the predicate calculus statements statements. Proofs should look like those done in class being in tabular form with clearly labeled inference rules.(Homework 6)
  • Answer a Datalog query by constructing a proof by contradiction using only resolution and universal instantiation/existential generalization. Proofs should look like those done in class being in tabular form with clearly labeled inference rules. (Homework 6)
  • Identify relations that are reflexive, irreflexive, symmetric, antisymmetric, or transitive. Add pairs to a relation to make it reflexive, symmetric, or transitive. (Homework 7)
  • Evaluate relational algebra expressions on relations (Homework 7 and Relational-database)
  • Use relational algebra to write queries to get information from a set of relations (Homework 7 and Relational-database)
  • Write a Datalog query in terms of relational algebra (select, project, and rename). Write a Datalog rule in terms of relational algebra (select, project, rename, natural join, and general set operations). (Relational-database)

For all of the problems related to inference, proofs should look like those done in class being in tabular form with clearly labeled inference rules that identify the involved statements. You will need to have a working knowledge of these rules and their names as they are not provided with the exam. You will also need to have a working knowledge of logical equivalences from chapter 1.

Final Exam Review

For sections 001 and 002, the final is at the scheduled time in class. For sections 003 and 004, the final opens December 10, 2016, and closes December 15, 2016 in the testing center. Be sure you check the testing center schedule and policies so your plan for the test is logically consistent. The exam questions include multiple guess and short answers, so it is a little different than before. You will indicate your answers (and show your work) directly on the exam except for the multiple guess section. The exam is closed book but one page of notes is allowed (8.5×11). It is expected to take at least 2.5 hours depending on your confidence level. Although the exam is comprehensive, it spends most of its time on key themes and the recent topics studied since the last midterm.

  • Write regular expressions for simple patterns and identify strings that belong to the language defined by a regular expression
  • Show a derivation given a simple grammar and an input string
  • Remove left-recursion from a simple grammar
  • Build an LL(1) parse table for a grammar
  • Determine if a relation is reflexive, irreflexive, symmetric, antisymmetric, transitive
  • Add pairs into a relation to make it reflexive or transitive (reflexive and transitive closure)
  • Figure out the grammar defined by code implementing an LL(1) top-down parser and describe the language with a regular expression
  • Solve queries on a given Datalog program using resolution, De Morgan's law, and logical equivalences
  • Use relational algebra to interpret a Datalog program and answer queries
  • Compute the power-set for a given set and draw a Hasse diagram for a given relational operator
  • Draw Hasse diagrams from partial orders using the divides-by operator
  • Compute least-upper-bounds and greatest-lower-bounds on a partial order
  • Identify when a partial order is a lattice
  • Algorithmically compute strongly connected components in arbitrary graphs
  • Use Dijkstra's algorithm to compute the shortest path between two nodes in a graph including extra information to reconstruct the actual path that is the shortest path.
  • Use Prim's algorithm to compute a minimum spanning tree with its cost on a give graph including extra information to reconstruct the actual tree
  • Use Kruskal's algorithm to a compute minimum spanning tree on a given graph including the use of trees to represent disjoint sets (must know the union-rank operation for the trees)
  • Show on inductive proof for correctness on an integer summation formula
  • Write a recursive algorithm to perform simple computation and prove the algorithm correct using induction
  • Enjoy an unexpected opportunity to demonstrate deeper understanding of a choice topic from the course
  • Smugly chuckle before leaving the testing center to give the impression that the exam was ridiculously easy (regardless of reality)
cs-236/exams.txt · Last modified: 2017/11/14 14:30 by brob144
Back to top
CC Attribution-Share Alike 4.0 International
chimeric.de = chi`s home Valid CSS Driven by DokuWiki do yourself a favour and use a real browser - get firefox!! Recent changes RSS feed Valid XHTML 1.0