
Explanation of Solution
a)
Converting 458 base 10 to base 3 using subtraction method:
Step 1:
Check the possibility of multiplying any integer with the powers of 3 which may result in lower number than 458. The number that can be subtracted from the given number 458 with the power of 3 is 243. The number 243 is less than 458. So subtract 243 from 458.
Step 2:
The number that can be subtracted from the given number 215 with the power of 3 is 81 and it should be multiplied by 2 in order to get the nearest number of 215. The number 162 is less than 215. So subtract 162 from 215.
Step 3:
The number that can be subtracted from the given number 53 with the power of 3 is 27. The number 27 is less than 53. So subtract 27 from 53.
Step 4:
The number that can be subtracted from the given number 26 with the power of 3 is 9 and it should be multiplied by 2 in order to get the nearest number of 26. The number 18 is less than 26. So subtract 18 from 26.
Step 5:
The number that can be subtracted from the given number 8 with the power of 3 is 3 and it should be multiplied by 2 in order to get the nearest number of 8. The number 6 is less than 8. So subtract 6 from 8.
Step 6:
The number that can be subtracted from the given number 2 with the power of 3 is 1 and it should be multiplied by 2 in order to get the nearest number of 2. So subtract 2 from 2. The result will be 0. The process is stopped as the remainder is 0.
Therefore, the equivalent value of
Explanation of Solution
b)
Converting 677 base 10 to base 5 using subtraction method:
Step 1:
Check the possibility of multiplying any integer with the powers of 5 which may result in lower number than 677. The number that can be subtracted from the given number 677 with the power of 5 is 625. The number 625 is less than 677. So subtract 625 from 677.
Step 2:
Take 5 to the power of 3 that is 125. The number 125 is greater than 52. So make the value as 0.
Step 3:
The number that can be subtracted from the given number 52 with the power of 5 is 25 and it should be multiplied by 2 in order to get the nearest number of 52. The number 50 is less than 52. So subtract 50 from 52.
Step 4:
Take 5 to the power of 1 that is 5. The number 5 is greater than 2. So make the value as 0.
Step 5:
The number that can be subtracted from the given number 2 with the power of 5 is 1 and it should be multiplied by 2 in order to get the nearest number of 2. So subtract 2 from 2. The result will be 0. The process is stopped as the remainder is 0.
Therefore, the equivalent value of
Explanation of Solution
c)
Converting 1518 base 10 to base 7 using subtraction method:
Step 1:
Check the possibility of multiplying any integer with the powers of 7 which may result in lower number than 1518. The number that can be subtracted from the given number 1518 with the power of 7 is 343 and it should be multiplied by 4 in order to get the nearest number of 1518. The number 1372 is less than 1518. So subtract 1372 from 1518.
Step 2:
The number that can be subtracted from the given number 146 with the power of 7 is 49 and it should be multiplied by 2 in order to get the nearest number of 146. The number 98 is less than 146. So subtract 98 from 146.
Step 3:
The number that can be subtracted from the given number 48 with the power of 7 is 7 and it should be multiplied by 6 in order to get the nearest number of 48. The number 42 is less than 48. So subtract 42 from 48.
Step 4:
The number that can be subtracted from the given number 6 with the power of 7 is 1 and it should be multiplied by 6 in order to get the nearest number of 6. So subtract 6 from 6. The result will be 0. The process is stopped as the remainder is 0.
Therefore, the equivalent value of
Explanation of Solution
d)
Converting 4401 base 10 to base 9 using subtraction method:
Step 1:
Check the possibility of multiplying any integer with the powers of 9 which may result in lower number than 4401. The number that can be subtracted from the given number 4401 with the power of 9 is 729 and it should be multiplied by 6 in order to get the nearest number of 4410. The number 4374 is less than 4401. So subtract 4374 from 4401.
Step 2:
Take 9 to the power of 2 that is 81. The number 81 is greater than 27. So make the value as 0.
Step 3:
The number that can be subtracted from the given number 27 with the power of 9 is 9 and it should be multiplied by 3 in order to get the nearest number of 27. So subtract 27 from 27.
Step 4:
Take 9 to the power of 0 that is 1. So make the value as 0. The result will be 0. The process is stopped as the remainder is 0.
Therefore, the equivalent value of
Want to see more full solutions like this?
Chapter 2 Solutions
Essentials of Computer Organization and Architecture
- 3) Find CFGs that for these regular languages over the alphabet Σ= {a, b}. Draw a Finite Automata e CFG. 1 COIS-3050H-R-W01-2025WI-COMB Formal anguages & Automata Is that contain the substring aba. (b) The language of all words that have an odd number letters and contains the string bb. (c) The language of all words that begin with the substring ba and contains an odd number of letters. 4) Convert the following FA into a PDA. a a S± b a a Ν Ꮓarrow_forwardCOIS-3050H-R-W01-2025WI-COMB Formal ministic PDA. Are the following words accepted by this Languages & Automata UI MIUSɩ that aTU I ed, indicate which state the PDA is in when the crash occurs. (a) aabbaa (b) aaabab (c) bababa Start (d) aaaabb A Accept Read₁ Push a (e) aaaaaa a b Read, Popi a a,b A Read₂ Accept A Pop₂arrow_forward5) Eliminate the A-productions from the following CFG: Abc COIS-3050H-R-W01-2025WI-COMB Formal Languages & Automata BAabC C CaA | Bc | A 6) Convert the following CFG into CNF. S→ XYZ XaXbS | a |A YSbS | X | bb Z→ barrow_forward
- Need help answering these questions!1. Design a While loop that lets the user enter a number. The number should be multiplied by 10, and the result stored in a variable named product. The loop should iterate as long as the product contains a value less than 100. 2. Design a For loop that displays the following set of numbers: 0, 10, 20, 30, 40, 50 . . . 1000 3. Convert the While loop in the following code to a Do-While loop: Declare Integer x = 1 While x > 0 Display "Enter a number." Input x End Whilearrow_forwardNeed help with these:Design a While loop that lets the user enter a number. The number should be multiplied by 10, and the result stored in a variable named product. The loop should iterate as long as the product contains a value less than 100. 2. Design a For loop that displays the following set of numbers: 0, 10, 20, 30, 40, 50 . . . 1000 3. Convert the While loop in the following code to a Do-While loop: Declare Integer x = 1 While x > 0 Display "Enter a number." Input x End Whilearrow_forwardConvert the While loop in the following code to a Do-While loop: Declare Integer x = 1 While x > 0 Display "Enter a number." Input x End Whilearrow_forward
- Python - need help creating a python program that will sum the digits of a number entered by the user. For example if the user inputs the value 243 the program will output 9 because 2 + 4 + 3 = 9. The program should ask for a single integer from the user, it should then calculate the sum of all the digits of that number and output the result.arrow_forwardI need help with this in Python (with flowchart): Im creating a reverse guessing game. Then to choose a random number from 1 to 100 and the computer program will attempt to guess it, displaying the directions calculated or not. The guess will be displayed and the user will answer if it was correct or not. If correct, the game ends, if not then the computer asks if the guess was too high or too low. Finally inputting an answer and the computer generates a new guess within the proper range. Oh and to make sure the program doesnt guess outside of the ranges produced by the inputs of “too high” and “too low”. The program ending when the user guesses correctly or after the program takes 6 guesses. HELP ASAP!arrow_forwardI need help with this in Python (with flowchart): Im creating a reverse guessing game. Then to choose a random number from 1 to 100 and the computer program will attempt to guess it, displaying the directions calculated or not. The guess will be displayed and the user will answer if it was correct or not. If correct, the game ends, if not then the computer asks if the guess was too high or too low. Finally inputting an answer and the computer generates a new guess within the proper range. Oh and to make sure the program doesnt guess outside of the ranges produced by the inputs of “too high” and “too low”. The program ending when the user guesses correctly or after the program takes 6 guesses. HELP ASAP!arrow_forward
- Need help finding errors in my pseudocode (Two)! Declare Boolean finished = False Declare Integer value, cube While NOT finished Display "Enter a value to be cubed." Input value; Set cube = value^3 Display value, " cubed is ", cube End While Next, I intended the following pseudocode to display the numbers 1 through 60, and then display the message "Time’s up!". Doesnt work and has error. Declare Integer counter = 1 Const Integer TIME_LIMIT = 60 While counter < TIME_LIMIT Display counter Set counter = counter + 1 End While Display "Time's up!"arrow_forwardHaving error in pseudcode; wanting to get five sets of two numbers each, calculate the sum of each set, and calculate the sum of all the numbers entered. Not functioning as intended and can't find the error.Code: // This program calculates the sum of five sets of two numbers. Declare Integer number, sum, total Declare Integer sets, numbers Constant Integer MAX_SETS = 5 Constant Integer MAX_NUMBERS = 2 Set sum = 0; Set total = 0; For sets = 1 To MAX_NUMBERS For numbers = 1 To MAX_SETS Display "Enter number ", numbers, " of set ", sets, "." Input number; Set sum = sum + number End For Display "The sum of set ", sets, " is ", sum "." Set total = total + sum Set sum = 0 End For Display "The total of all the sets is ", total, "."arrow_forwardNeed help converting loops!1. Convert the following While loop to a For loop: Declare Integer count = 0 While count < 50 Display "The count is ", count Set count = count + 1 End While _________________________________________________ 2. Convert the following For loop to a While loop: Declare Integer count For count = 1 To 50 Display count End Forarrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





