Computational Morphology Flashcards

1
Q

What is a Finite State Machine’s “emission”?

A

Letters produced at each transition

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

What is a Finite State Machine’s formal language?

A

The set of strings that can be generated while moving from a start state to an end states. Transitioning between states emits symbols of the string. This is the same as the set of strings that can be recognized by matching input symbols with emissions by taking valid transitions from start state to finish state.

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

Are the languages of Finite State Machine’s finite or infinite?

A

They can be either.

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

What are “regular languages”

A

Languages that can be produced by finite state machines or regular expressions. They are usually assumed sufficient to describe phonology and morphology.

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

Give an example of an irregular language

A

anbn

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

Apart from finite state machines. What other way can regular languages be expressed?

A

Using regular expression.

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

What classes of formal languages did Chomsky describe? (4)

A

3- Regular

2 -context-free

1 - context-sensitive

0 -recursively enumerable

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

What is a recursively enumerable language?

A

Anything a computer program can produce

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

What is the Chomsky Hierarchy

A

Languages further down the list of formal languages become.

  • increasingly difficult to compute
  • capable of describing more languages

Regular < Context-free < Context-Sensitive < Recursively Enumerable.

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

Difference between a non-deterministic and deterministic FSM

A

Multiple transitions are possible from an input at each state. AN input is accepted as long as it produces an ordinal set of transition that finishes at an accept state

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