answersLogoWhite

0


Best Answer

? problem division and multiplication related a solve you help array an can how

User Avatar

Wiki User

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How can an array help you solve a related multiplication and division problem?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a group of related multiplication and division facts that use the same numbers?

array


If an array shows a square number how many multiplication and division sentences can describe the array?

2


Can an abacus be used for multiplication and division?

Yes. An abacus is like an array so therefore it is possible to use it for multiplication up to the number of rods, and is able to be used for division by separating the beads.


What is an multiplication array?

A multiplication array is for example 30<10times9<2times5times3times3 and2times3 times3times5 that what is an array


Is array a multiplication or division word?

It's a multiplication word. E.g. The columns/height=5 and the rows/width=6 equals 30 (5x6=30). Or columns/height=3 and rows/width=2, so 3x2=6. It's not division. I'll explain why if you ask.


What is an array in math?

Arrays are drawings or doodles that can show you a multiplication.


Flow chart of multiplication of 2d array?

algorithm & flowchrt of 2d matrices


What does the word array mean in math?

An array is a set of numbers that form some sort of regular arrangement. A linear array is a 1-dimensional array consisting of a row or a column of a set of numbers. A 2-dimensional array is a rectangular arrangement of numbers. And there are arrays with higher dimensions. The elements of an array need not be numbers: they could be variables, functions or expressions. In other words, it's a picture to describe a multiplication problem.


What are arrays?

Array data structure, an arrangement of items at equally spaced addresses in computer memoryArray data type, used in a programming language to specify a variable that can be indexedAssociative array, an abstract data structure model that generalizes arrays to arbitrary indicesor various kinds of the above, such asBit array or bit vectorDynamic array, allocated at run timeParallel array of records, with each field stored as a separate arraySparse array, with most elements omitted, to store a sparse matrixVariable-length arrayRagged (jagged) array, where the rows have different lengths individuallyor various related concepts:Array processor, a computer to process arrays of data (not to be confused with a processor array)Array programming, using matrix algebra notation in programs (not the same as array processing)Array slicing, the extraction of sub-arrays of an arrayAPL (programming language)or also:Video Graphics Array (VGA), a display adapter and video format, and many variants thereof (EVGA, FWVGA, QVGA, QXGA, SVGA, SXGA, SXGA+, TXGA, UVGA, XGA, XGA+, ...)


Are Commutative property of multiplication and multiplication Array the same?

No. They are not at all the same thing. A multiplication array is something that you usually use when you're learning multiplication. For example: there are 5 rows of 7. Its a picture that shows something like that. On the other hand, a commutative property is 2 numbers that you can multiply very easily in your head. The numbers are between 0 and 9. If they are double digits, they're not commutative property.


How do you draw an array to solve a problem?

The answer will depend on what the problem is: some can be solved using an array but for others, arrays are a complete waste of time.


How do you write an array that computes the product of the two numbers in java?

You don't need an array for that. Just do the multiplication, for example: result = factor1 * factor2; Or: result = 5 * 8;