9514 1404 393
Answer:
32
Step-by-step explanation:
The first term is 5 and the common difference is 9-5=4, so the n-th term is ...
an = a1 +d(n -1)
an = 5 +4(n -1) = 4n +1
Then the term number for the term 129 is ...
129 = 4n +1 . . . . . put the given value in the formula
128 = 4n . . . . . . . subtract 1
32 = n . . . . . . . . . .divide by 4
The 32nd term is 129.
The partial quotient is 23
Answer:
28 cm
Step-by-step explanation:
The formula for the area of a triangle is 1/2bh
Here we have 1/2 (14)(4)
That comes to 28 cm
Answer:
Simplifying 6x * 3y * 9x2y4 Reorder the terms for easier multiplication: 6 * 3 * 9x * y * x2y4 ... When you enter an expression into the calculator, the calculator will simplify the ... For addition and subtraction, use the standard + and - symbols respectively.
Step-by-step explanation:
Answer:
and ![[6,9,8,7]](https://tex.z-dn.net/?f=%5B6%2C9%2C8%2C7%5D)
Step-by-step explanation:
GIVEN: an array of ten integers
.
TO FIND: If we partition this array using Quick sort's partition function and using
for the pivot. List the elements of the resulting array after the partition finishes.
SOLUTION:
quick sort is a divide and conquer algorithm in which an array is partitioned into sub-arrays about an pivot element by checking whether elements are greater than pivot or and then sub arrays are sorted recursively.
Here
is the pivot element.
two arrays will be created, in first array element less than or equal to pivot element are stored in other elements greater than pivot element are stored.
Starting from first element of array
elements in first array will be ![=[4,0,3,1,2,5]](https://tex.z-dn.net/?f=%3D%5B4%2C0%2C3%2C1%2C2%2C5%5D)
elements in second array will be ![=[6,9,8,7]](https://tex.z-dn.net/?f=%3D%5B6%2C9%2C8%2C7%5D)
Hence the resulting array after the partition finishes are
and ![[6,9,8,7]](https://tex.z-dn.net/?f=%5B6%2C9%2C8%2C7%5D)