The FSA shown below has I = {0, 1} and determines whether or not a binary number is divisible by three. Assuming that the input to this FSA is a binary number n, prove that the FSA can determine whether n is divisible by 3 in a number of steps which is O(lg(n)).
The FSA shown below has I = {0, 1} and determines whether or not a binary number is divisible by three. Assuming that the input to this FSA is a binary number n, prove that the FSA can determine whether n is divisible by 3 in a number of steps which is O(lg(n)).
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
(DiscreteMath)

Transcribed Image Text:## Deterministic Finite Automaton (DFA) for Divisibility by 3
This section covers a Deterministic Finite Automaton (DFA) used to determine whether a binary number is divisible by 3.
### Description
The DFA illustrated in the diagram below has the alphabet set Σ = {0, 1}. It is constructed specifically for checking whether a given binary number is divisible by three. The DFA processes the binary input digit by digit and moves between states to ascertain divisibility.
### DFA Diagram
The diagram represents a DFA with three states. Each state is illustrated by a circle, with arrows indicating transitions based on binary input:
1. **States**:
- The leftmost state is the **initial and accepting state** (double-circled), indicating a remainder of 0 when the binary number is divided by 3.
- The middle state indicates a remainder of 1.
- The rightmost state indicates a remainder of 2.
2. **Transitions**:
- From the initial state (remainder 0):
- An input of 0 loops back to the initial state.
- An input of 1 transitions to the middle state (remainder 1).
- From the remainder 1 state:
- An input of 0 transitions to the rightmost state (remainder 2).
- An input of 1 loops back to the initial state.
- From the remainder 2 state:
- An input of 0 remains in the same state.
- An input of 1 transitions back to the remainder 1 state.
### Proof of Efficiency
Assuming the input to this DFA is a binary number \( n \), we aim to show that the DFA can determine whether \( n \) is divisible by 3 within a number of steps \( O(\log(n)) \).
- The length of the binary representation of a number \( n \) is \( \log_2(n) \). This means that the number of steps required to process the binary digits of \( n \) is proportional to the length of its binary representation, which is \( O(\log(n)) \).
Therefore, the DFA operates efficiently, requiring a logarithmic number of steps relative to the size of the input binary number \( n \).
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 2 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education