Unit 5: Algorithms and Simulations

Lab 1: Search Algorithms and Efficiency

5.1.2: Problem and Instance of a Problem  
AAP-4.A.1
5.1.2: Linear Search or Sequential Search  
5.1.3: Binary Search  
AAP-2.P.1, AAP-2.P.2

A binary search algorithm starts in the middle of a sorted list and repeatedly eliminates half the list until either the desired value is found or all elements have been eliminated.

AAP-2.O.1
You learned about traversing a list on Unit 2 Lab 2 Page 3: Checking Each Quiz Answer.

Linear search does a complete traversal of the list. Binary search saves time by doing a partial traversal of the list.

5.1.4  
AAP-4.A.3

The relationship between the input size and the number of steps required to solve a problem is the efficiency of the algorithm used to solve the problem.

5.1.5  
5.1.5  
5.1.6  
AAP-4.A.2
5.1.6  
AAP-4.B.1, AAP-4.B.2, AAP-4.B.3

A decidable problem a decision problem for which it's possible to write an algorithm that will give a correct output for all inputs.

An undecidable problem is the opposite. It's not possible to write an algorithm that will give a correct output for all inputs—even though it might be possible for some of them.

5.1.8: Sequential and Parallel Computing  
CSN-2.A.1, CSN-2.A.2

This section covers two computational models:

5.1.8  
CSN-2.A.3

Distributed computing is a form of parallel computing that uses multiple computers (perhaps even spread out around the world).

5.1.8  

A processor is a piece of circuitry inside a computer that processes the instructions from computer programs.

CPU

Image credit: Wikipedia user Solipsist

5.1.8  
CSN-2.A.7

Programmers refer to the speedup of parallel solution to describe how many times as fast the parallel solution is compared to the sequential solution:
\text{speedup} = \frac{\text{sequential time}}{\text{parallel time}}

Lab 2: Simulations

5.2.1  
AAP-3.F.1, AAP-3.F.2

Simulations are computer representations of real things or situations that vary over time. A simulation is an abstraction designed for a particular purpose.

Lab 3: Turning Data into Information

5.3.1: Data vs. Information  
DAT-2.A.1

DAT-2.A.2
Data provide opportunities for identifying trends, making connections, and addressing problems. Information is the result of analyzing that data.

5.3.1  

A correlation is a particular kind of information, namely a dependence between two variables. For example in the first picture here, as one variable goes up the other goes down. It's also a correlation when as one variable goes up or down the other changes in the same manner.

a graph with a bunch of data points, in which they generally follow a straight line from top left to bottom right
a graph with a bunch of data points, in which they generally follow a straight line from bottom left to top right
a graph with a bunch of data points scattered all over the place, not following a line
negative correlation
positive correlation
no correlation
5.3.1  
DAT-2.E.4

Insight is a meaningful conclusion drawn from analyzing information.

5.3.3: Records, Fields, and Columns   three frame animation of the report of cars dataset displayed as a table with columns and rows; in the first frame, the fourth row of the table is highlighted and labeled 'record (row)'; in the second frame, the third column of the table is highlighted and labeled 'column'; in the third frame, the cell in the fourth row and third column is highlighted and labeled 'field'
5.3.3  
DAT-2.C.4, DAT-2.E.2

Cleaning data is the process of making the data uniform without changing its meaning (such as replacing abbreviations, spellings, and capitalizations with the intended word or converting miles to kilometers). Programmers can use programs to filter and clean digital data, thereby gaining insight and knowledge.

5.3.5  
DAT-2.E.3 classifying only

Classifying data means distributing data into groups based on common characteristics.

5.3.5   The mode of a data set is the value that appears most often in it.

5.3.6  
DAT-2.B.1

Metadata are data about data. For example, the piece of data may be an image, while the metadata may include the date of creation or the file size of the image.

Lab 4: Unsolvable and Undecidable Problems

5.4.1  

A proof by contradiction is a two-step proof that a statement is false, which is done by:

  1. assuming the statement is true
  2. based on that assumption, proving something known to be false (that is, showing the assumption creates a contradiction)

5.4.1  

An undecidable statement might be true or might be false; we don't know which.

A self-contradictory statement can be neither true nor false.

5.4.2  

An infinite loop is a sequence of computer instructions that repeats forever.

An unsolvable problem is one for which no algorithm can ever be written to find the solution.

An undecidable problem is one for which no algorithm can ever be written that will always give a correct true/false decision for every input value. Undecidable problems are a subcategory of unsolvable problems that include only problems that should have a yes/no answer (such as: does my code have a bug?).