Question

identical language in explanations will not be accepted. Math 214: Project 2 1. Multiplication patterns in other 5 bases In b
0 0
Add a comment Improve this question Transcribed image text
Answer #1

When doing addition in base 6, increase the number of digits as soon as 6 is reached.

For example, while adding 46 and 16, 46 + 16 = 56, but adding one more 16, we get 56 + 16 = 106, because a 6 is reached and we have to increase the number of digits.

Similarly, 56 + 56 can be written as (56 + 16) + 46 = 106 + 46 = 146. And similar process is carried on.

Now in a.)

56* 46 = 236 + 46 = (236 + 36) + 26 = 306 + 26 = 326

b)

0 1 2 3 4 5
1 1 2 3 4 5
2 2 4 10 12 14
3 3 10 13 20 23
4 4 12 20 24 32
5 5 14 23 32 41
  • 5*5 = 25 = 24+1 = 4*61 + 1 = 416
  • 5*4 = 20 = 18 + 2 = 3*6 + 2 = 316
  • 5*3 = 15 = 12 + 3 = 2*6 + 3 = 236
  • 5*2 = 10 = 1*6 + 4 = 146
  • 5*1 = 5 = 56
  • 4*4 = 16 = 2*6 + 4 = 246
  • 4*3 = 12 = 2*6 = 206
  • 4*2 = 8 = 6+2 = 126
  • 4*1 = 46
  • 3*3 = 9 = 6+3 = 136
  • 3*2 = 6 = 106
  • 3*1 = 36
  • 2*2 = 4 = 46

c.) Multiples of 5 have been bolded in the table.

  • The sum of the figits in the number is equal to 5, or multiple of 5.
  • Digits are reversed after 3*2.
  • They lie on the edge of the table.

d.)

0 1 2 3 4 5 6 7
1 1 2 3 4 5 6 7
2 2 4 6 10 12 14 16
3 3 6 11 14 17 22 25
4 4 10 14 20 24 30 34
5 5 12 17 24 31 36 43
6 6 14 22 30 36 44 52
7 7 16 25 34 43 52 61

e.) Multiple of 7 have been bolded. We notice that -

  • The sum of the figits in the number is equal to 7, or multiple of 7.
  • Digits are reversed after 4*7.
  • They lie on the edge of the table.
Add a comment
Know the answer?
Add Answer to:
Identical language in explanations will not be accepted. Math 214: Project 2 1. Multiplication pa...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Using Html 5: - You are to create a table consisting of 11 rows and 11...

    Using Html 5: - You are to create a table consisting of 11 rows and 11 columns. The table cells are to be 40 pixels wide, each row. The table is to also have a header row that spans across all columns and contains 'Multiplication Math' as the table name. - Alternating rows will have a different background color. - The table is to be centered in the HTML page. The top table row is to have the numbers 1-10...

  • Game Of life 1. Change the size of the arrays: const int MAX_ROW = 40; const...

    Game Of life 1. Change the size of the arrays: const int MAX_ROW = 40; const int MAX_COL = 80; ***Make sure that only global variables you have in your program are Max_ROW and MAX_COL. Move any global variables you declared to a function or functions. ***Make sure to update setNextGenArray(). Use the variable names, not 40 or 80. ***For testing, I will be changing the array size. Your program should work by only modifying the array size. 2. Use...

  • Using Python, Can someone please assist in the following: These are the hints: Summary This week's lab is to create a simple multiplication table using nested loops and if statements. Prompt the...

    Using Python, Can someone please assist in the following: These are the hints: Summary This week's lab is to create a simple multiplication table using nested loops and if statements. Prompt the user for the size of the multiplication table (from 2x2 to 10x10). Use a validation loop to display a warning if the number is less than 2 or greater than 10 and prompt the user to enter the data again until they enter a valid number Put a...

  • Need some help I am not understanding this programming class at all. We are using Microsoft...

    Need some help I am not understanding this programming class at all. We are using Microsoft visual studio with python in console mode to complete these labs. Double-click to hide white space CIS115 Week 4 Lab Overview Title of Lab: Multiplication Table in Python Summary This week's lab is to create a simple multiplication table using nested loops and if statements. Prompt the user for the size of the multiplication table (from 2x2 to 10x10). Use a validation loop to...

  • PROCEDURES and DATA COLLECTION: PART A. Observe the changes in pH of both buffered and non-bsuffered...

    PROCEDURES and DATA COLLECTION: PART A. Observe the changes in pH of both buffered and non-bsuffered selutions digital pH meters if working pH meters are available using universal pH paper and/or 1. Obtain a package of universal pH paper with a color chart and a digital pH meter if they are available. 2. Obtain 6 medium sized test tubes and label them 1-6 (confirm that the pH meter probe will fit inside) THE TEST TUBES are clean, with clean and...

  • Note: Please write the Pseudocode using Arrays method in Java language. Program 2 (40%); For this...

    Note: Please write the Pseudocode using Arrays method in Java language. Program 2 (40%); For this assignment, we're going to make a game. Imagine you initially start with a random "hand" of two cards (values 2-9). Your goal is to continue to add to your hand until the sum of the cards is between 21 25, at which point youu win. Further, if you hold 5 cards, you win. However, if you exceed a sum of 25, you lose. Admittedly,...

  • Write a c++ program: Many mathematical problems require the addition, subtraction, and multiplication of two matrices. Write an ADT Matrix. You may use the following class definition: const int MAX_RO...

    Write a c++ program: Many mathematical problems require the addition, subtraction, and multiplication of two matrices. Write an ADT Matrix. You may use the following class definition: const int MAX_ROWS = 10; const int MAX_COLS = 10; class MatrixType { public: MatrixType(); void MakeEmpty(); void SetSize(int rowsSize, int colSize); void StoreItem(int item, int row, int col); void Add(MatrixType otherOperand, MatrixType& result); void Sub(MatrixType otherOperand, MatrixType& result); void Mult(MatrixType otherOperand, MatrixType& result); void Print(ofstream& outfile); bool AddSubCompatible(MatrixType otherOperand); bool MultCompatible(MatrixType otherOperand);...

  • In another set of mating experiments, a pink rabbit was mated to a pink rabbit and...

    In another set of mating experiments, a pink rabbit was mated to a pink rabbit and the progeny tested for RFLPs A and B and for coat color. Since both parents are heterozygous at A, B, and W, each progeny is the result of two meiosis events in which recombination COULD have occurred. a. How many meiosis events are represented in the 22 progeny shown in the table shown below? 1 2 3 4 5 6 7 8 9 10...

  • 1. Consider the following table providing the needed tasks to completing a successful project. Th...

    1. Consider the following table providing the needed tasks to completing a successful project. The first column provides the name of the task, the second column states the time to complete that task and the third column tells when a task can begin. Task Time to Condition to start task complete #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11 #12 #13 #14 #15 #16 #17 #18 #19 7 days None 5 days 8 daysNone 4 days 3...

  • SQL Question 2 Using your table from question 1: Create a minimum of 4 INSERTS. On...

    SQL Question 2 Using your table from question 1: Create a minimum of 4 INSERTS. On one of your INSERTs, do not specify all of your columns. In other words, if you have 5 columns in your table, only mention 4 or less columns in one of your INSERTs. Be sure to write a comment above the INSERT with less columns and explain what is missing in a full English sentence. You should write a simple SELECT after your INSERTs...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT