Theory of Computation Flashcards

1
Q

What name is given to the rules that define how symbols can be replaced by other symbols?

A

Production rules

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What type of object is enclosed in angle brackets in BNF?

A

Non-terminal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Why can BNF represent some languages that regular expressions can’t?

A

BNF supports recursion & languages with counting

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the halting state in a Turing machine?

A

The state(s) with no outgoing transitions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the starting state in a Turing machine?

A

The state that you start at

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the two states within a Turing machine?

A

Current state and next state

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Three components of a Turing machine?

A
  • Infinite tape (in one direction)
  • Read/write head
  • Control unit
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the alphabet of a Turing machine?

A

1, 0 and blank.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What makes a task computable?

A

If a Turing machine can complete it - every algorithm can be represented as a Turing Machine.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a Universal Turing Machine?

A

A Turing Machine that faithfully executes operations exactly how the simulated Turing Machine would with the same process.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the Halting problem?

A

The Halting problem is non-computable - no algorithm will solve it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is a Heuristic?

A

It offers an approximate solution to intractable problems within polynomial times - not the most optimal solution.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is an intractable problem?

A

A problem that cannot be solved within polynomial time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the time complexity of an intractable problem?

A

a^n, n! or worse.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is a tractable problem?

A

A problem that can be solved in polynomial time or better.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is a computable problem?

A

A problem that can be solved with an algorithm - must always terminate and produce the correct output.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What is a non-computable problem?

A

A problem in which no algorithm exists to solve the problem.

18
Q

What is Big-O notation?

A

A way of classifying algorithms by how their computation time grows as input size grows.

19
Q

What is the order of magnitude?

A

The term in the function that increases fastest (eg number w/ largest power)

20
Q

What is the time complexity of the linear search?

21
Q

What is the time complexity of the bubble sort?

22
Q

What is the time complexity of the merge sort?

A

O(nlogn)
- Linear logarithmic.

23
Q

What is the time complexity of the binary search?

24
Q

What do we assume with the time complexity of an algorithm?

A

Always assume the worst case scenario.

25
Q

What is the space complexity of an algorithm?

A

A measure of the amount of working storage space an algorithm needs.

26
Q

What is time complexity?

A

The amount of time it takes to run a program.

27
Q

What is automation?

A

Models being put into actions to solve real-life problems.

28
Q

What are the steps of automation?

A
  • Creating algorithms
  • Implementing the algorithms in program code (instructions)
  • Implementing the models in data structures
    executing the code.
29
Q

What is psuedocode?

A

Code that can’t be ran into a programming language, used to help a programmer lay out code without having to conform to the rules of a language.

30
Q

What is composition?

A

Combining procedures to form new compound procedures.

31
Q

What is decomposition?

A

Breaking down a problem into smaller, easier to solve sub-problems.

32
Q

What are the two main types (not only types) of abstraction?

A

Representational abstraction and abstraction by generalisation.

33
Q

What is abstraction by generalisation?

A

Grouping common characteristics in a hierarchical (is like) relationship.

34
Q

What is representational abstraction?

A

Filtering out unnecessary details.

35
Q

What is problem abstraction?

A

Simplifying into a problem into one that has already been solved and using that answer to solve the original problem.

36
Q

What is information hiding?

A

Hiding the details that are non-essential characteristics.

37
Q

What is data abstraction?

A

The simplification of a body of data to a simplified whole.

38
Q

What is procedural abstraction?

A

Abstracting the values away from a computational procedure.
Result = PROCEDURE

39
Q

What is functional abstraction?

A

Identifying and representing a task with reusable functions/procedures.

40
Q

What is an algorithm?

A

A set of instructions to follow to perform a different task.