Given n points P1, P2, ..., Pn in d-dimensional space, the objective of the 3-center problem is to choose three center points ci, C2, C3 from the list of n given points so that the maximum distance between any point and its closest center is minimized. Mathematically speaking, we wish to choose three center points ci, C2, C3 to minimize the following cost function. cost(C1,C2,C3) = max min(||Pi – c1 ||?, ||P; – c2||2, ||Pi – c3||2) - (1) 1 1. Write a brute force algorithm that solves the 3-center problem. A brute force algorithm is an algorithm that solves a problem by trying every possibility. Be sure that your algorithm specifies enough detail so that it will be relatively easy for you to translate it into C source code. What is the computational complexity of your algorithm in terms of the number of input points n? For example, recall that bubble sort is O(n^2).

Answers

Answer 1

O(n

A brute force algorithm for the 3-center problem would involve trying every combination of three points in the set of given points, calculating the cost for each combination using Equation (1), and then returning the combination with the minimum cost. The algorithm can be expressed as follows:


   Set minCost to a very large number, and store the indices of the chosen centers c1, c2, c3 in three variables i1, i2, i3.
   For each triplet of indices (i1, i2, i3) in the set of points P1, P2, ..., Pn:
       
           Calculate the cost for the triplet using Equation (1).
           If the cost is lower than minCost, update minCost to the calculated cost and update i1, i2, i3 accordingly.
       
   
   Once all triplets have been checked, return the indices i1, i2, i3 corresponding to the minimum cost.



The computational complexity of this algorithm is O(n

combinations of three points from a set of n points.

Learn more about brute force algorithm

brainly.com/question/28197566

#SPJ11


Related Questions

Evaluate sin(A-B), if sinA=12/13 where A is in Quadrant II and
cosB= 8/17 where B is in Quadrant IV.
Answer with a fraction. No decimals
Sin(A-B) =

Answers

The result of sin (A - B) is 21/221.

To evaluate sin (A - B), we can use the formula:

sin (A - B) = sin A * cos B - cos A * sin B.

We are given that sin A = 12/13 and cos B = 8/17. We need to find cos A and sin B to use the formula.

Since A is in Quadrant II, cos A is negative. We can use the Pythagorean identity, sin²A + cos²A = 1, to find cos A:

cos²A = 1 - sin²A
cos²A = 1 - (12/13)²
cos²A = 1 - 144/169
cos²A = 25/169
cosA = -5/13

Similarly, since B is in Quadrant IV, sin B is negative. We can use the Pythagorean identity to find sin B:

sin²B = 1 - cos²B
sin²B = 1 - (8/17)²
sin²B = 1 - 64/289
sin²B = 225/289
sinB = -15/17

Now we can plug in the values into the formula:

sin (A-B) = (12/13)*(8/17) - (-5/13)*(-15/17)
sin (A-B) = 96/221 - 75/221
sin (A-B) = 21/221


Here you can learn more about pythagorean identity: https://brainly.com/question/10285501

#SPJ11

Find the value of AC and BD

Answers

The values are given as follows:

AC = 25.BD = 12.4.

How to obtain the values?

The value of AC can be obtained applying the Pythagorean Theorem, as follows:

(AC)² = 20² + 15²

AC = sqrt(20² + 15²)

AC = 25.

Then there are two similar triangles, with dimensions given as follows:

BC = 15 and DC = x.AB = 20 and AD = 25 - x.

Then the value of x is obtained as follows:

15/20 = x/(25 - x)

3/4 = x/(25 - x)

4x = 3(25 - x)

7x = 75

x = 10.7.

Then the altitude BD is obtained with the geometric mean theorem as follows:

BD² = 10.7 x (25 - 10.7)

BD² = 153

BD = sqrt(153)

BD = 12.4.

More can be learned about the Pythagorean Theorem at brainly.com/question/30203256

#SPJ1

find the perimeter of the given circle​

Answers

The circumference of the circle with a diameter of 28 cm will be 87.92 cm.

What is the circumference of a circle?

It is the close curve of an equidistant point drawn from the hub. The radius of a rotation is the distance between the center and the rim.

Let r be the radius of the circle. The circumference of the circle will be given as,

C = 2πr units

The diameter of the circle is 28 cm. Then the radius is calculated as,

r = d / 2

r = 28 / 2

r = 14 cm

Then the circumference of the circle is given as,

C = 2 · π · 14

C = 28 × 3.14

C = 87.92 cm

The circumference of the circle with a diameter of 28 cm will be 87.92 cm.

More about the circumference of a circle link is given below.

https://brainly.com/question/27177006

#SPJ1

Make x the subject of the formula x/a+y/b=1, hence, if a=4, b=1, y=2 evaluate x

Answers

When a = 4, b = 1, and y = 2, the value of x that satisfies the equation x/a + y/b = 1 is -4.

To make x the subject of the formula x/a+y/b=1, we can start by isolating x on one side of the equation. We can do this by subtracting y/b from both sides of the equation:

x/a = 1 - y/b

Next, we can multiply both sides of the equation by a to isolate x:

x = a(1 - y/b)

Now that we have a formula for x in terms of a, b, and y, we can evaluate x when a = 4, b = 1, and y = 2:

x = 4(1 - 2/1)

x = 4(1 - 2)

x = 4(-1)

x = -4

To learn more about equations

https://brainly.com/question/10413253

#SPJ4

What is the following Factor for these two rational expressions:
22x + 11 x2 – 3x – 10 1 – 2c 20c2 + 10c

Answers

To find the factor of these two rational expressions, we need to factor each expression separately and then compare them to find any common factors.

First, let's factor the expression 22x + 11 x2 – 3x – 10:
(22x + 11 x2) + (-3x - 10)
11x(2 + x) - (3x + 10)
(11x - 10)(x + 2)

Next, let's factor the expression 1 – 2c 20c2 + 10c:
(1 - 2c) + (20c2 + 10c)
(1 - 2c) + 10c(2c + 1)
(1 - 2c)(10c + 1)

Now, we can compare the factors of each expression to see if there are any common factors. In this case, there are no common factors between the two expressions.

Therefore, the factor for these two rational expressions is 1.

To know more about rational expressions refer here:

https://brainly.com/question/19585906

#SPJ11

question in the photo please help me im begging lol

Answers

Water turning to blood will be the first plague that will be present.

What are plagues?

Both humans as well as mammals can contract the plague. The protozoan parasite is the bacterium that causes it. The most common ways for humans to contract the plague are through handling a plague-infected animal or by getting bitten by a rodent bug that is carrying the disease.

The 10 plagues in the correct order are:

Water turning to bloodFrogsLiceFliesTerrible BoilsLivestock dyingHail & fireLocustsThree days of darknessDeath of the firstborn

Learn more about plagues, here:

https://brainly.com/question/23399204

#SPJ1

y = 4* Reflect it across the y-axis, translate it to the right 3 units, and vertically stretch it by a factor of 2

Answers

y = -2x + 14

To reflect the equation y = 4 across the y-axis, we need to change the sign of the x-term. Since there is no x-term in the original equation, we can simply add a negative x-term to get the reflected equation: y = -x + 4.

Next, to translate the equation to the right 3 units, we need to subtract 3 from the x-term. This gives us the translated equation: y = -(x - 3) + 4.

Finally, to vertically stretch the equation by a factor of 2, we need to multiply the entire equation by 2. This gives us the final transformed equation: y = 2(-x + 3) + 8.

In summary, the equation y = 4 reflected across the y-axis, translated to the right 3 units, and vertically stretched by a factor of 2 is y = -2x + 14.

Learn more about reflection

brainly.com/question/30270479

#SPJ11

An amusement park charges an admission fee of 25 dollars per person. The cost, C (in dollars), of admission for a group of p people is given by the following.
C = 25 p
What is the cost of admission for a group of 3 people?

Answers

Answer:

75 dollars.

Step-by-step explanation:

Each person costs 25 dollars and p=3 we just put this into a equation.

25 × 3 = 75

C = 75

Could anyone explain the steps to this problem?

Answers

Answer:

Step-by-step explanation:

Both angles are equal so,

1+16x =17x-3

16x-17x= -3-1

-x = -4

x = 4

20 points hurry and mark brainly
Jennifer bought three of the same shirt and paid $63 after the 30% discount. What was the original price of each shirt? Show your work or explain in words how did you get the answer.

Answers

Answer:

.7x 63 = 90  (.7 is the same as 70%.  If they took off 30%, they left on 70%)

90 ÷ 3 = 30

Jennifer originally paid $30.00 a shirt.

Check

30 x .3 = 9  This is the amount of the discount per shirt.

30 - 9 = 21  Discounted cost per shirt.

21 x 3 = 63 The cost of three shirts.  

This checks.

Helping in the name of Jesus.

roshan and Isha share a reward of 250 rs. in the ratio 1:4. Find the amount shared by each of them. pls tell the answer. I will mark you as the brainlist​

Answers

Answer: Roshan: 250/5 = 50 Rs.

Isha: 250 - 50 = 200 Rs.

Step-by-step explanation:

Perform a regression analysis based on Table 1 results: a) Write down a linear regression model to capture the possibility that the two factors A and B may interact. (2 points] b) Estimate 02. [3 poin

Answers

a) To perform a regression analysis based on the results of Table 1, we need to write down a linear regression model that captures the possibility of interaction between factors A and B. The model can be written as follows: Y = B0 + B1*A + B2*B + B3*A*B. Where Y is the dependent variable, A and B are the independent variables, B0 is the intercept, B1 and B2 are the coefficients of A and B respectively, and B3 is the coefficient of the interaction term A*B.

b) To estimate the coefficient B2, we need to use the regression analysis results from Table 1. The estimate of B2 can be obtained by looking at the coefficient of the independent variable B in the table. If the table does not provide the estimate of B2, we can use the following formula to calculate it: B2 = (SSB - SSB/A)/(dfB - dfB/A)

Where SSB is the sum of squares for factor B, SSB/A is the sum of squares for factor B after adjusting for factor A, dfB is the degrees of freedom for factor B, and dfB/A is the degrees of freedom for factor B after adjusting for factor A.

Know more about regression analysis here:

https://brainly.com/question/30011167

#SPJ11

64200x0.12 with work!

Answers

Answer: 7704

Step-by-step explanation:

( see image !)

18. Find m/BCA.
(9x + 1)
A
(5x + 12)
B
(10x-37)
C

Answers

Answer:

∠BCA 57 degrees

Step-by-step explanation:

∠ABC + (5x + 12) = 180

=> ∠ABC = 180 - (5x + 12)

∠BAC + (9x + 1) = 180

=> ∠BAC = 180 - (9x + 1)

∠BCA + (10x - 37) = 180

=> ∠BCA = 180 - (10x - 37)

∠ABC + ∠BAC + ∠BCA = 180

Substitute to find x

[180 - (5x + 12)] + [180 - (9x + 1)] + [180 - (10x - 37)] = 180

180 + 180 + 180 - 5x - 9x - 10x - 12 - 1 + 37 = 180

564 - 24x = 180

24x = 564 - 180

24x = 384

x = 384/24 = 16

Substitue x = 16

∠BCA = 180 - (10x - 37)

∠BCA = 180 - 10(16) + 37 = 57

Answer:

m∠BCA = 57°

Step-by-step explanation:

To find the measure of angle BCA we must first find the value of x.

The diagram gives expressions for the exterior angles of the triangle.

The exterior angles of a triangle sum to 360°. Therefore, to calculate the value of x, equate the sum of the exterior angles to 360° and solve for x.

⇒ (9x + 1)° + (5x + 12)° + (10x - 37)° = 360°

⇒ 9x + 1 + 5x + 12 + 10x - 37 = 360

⇒ 9x + 5x + 10x + 1 + 12 - 37 = 360

⇒ 24x - 24 = 360

⇒ 24x - 24 + 24 = 360 + 24

⇒ 24x = 384

⇒ 24x ÷ 24 = 384 ÷ 24

⇒ x = 16

Each interior and exterior angle of a triangle form a linear pair.

As the sum of angles of a linear pair is always equal to 180°, to find the measure of angle BCA, equate the sum of ∠BCA and its exterior angle to 180°:

⇒ (10x - 37)° + m∠BCA = 180°

Substitute the found value of x and solve for the angle:

⇒ (10(16) - 37)° + m∠BCA = 180°

⇒ (160 - 37)° + m∠BCA = 180°

⇒ 123° + m∠BCA = 180°

⇒ 123° + m∠BCA - 123° = 180° - 123°

⇒ m∠BCA = 57°

Therefore, the measure of angle BCA is 57°.

What is the Domain and Range

Answers

The domain and range of the function are respectively, (-6, 6) & (0, 6).

What is Domain and Range ?

The domain of a function is the set of all input values (independent variable) for which the function is defined and produces a valid output (dependent variable).

The range of a function is the set of all possible output values of the function. It represents the set of all possible values of the dependent variable.

Given that,

The graph of the function,

As we know from the definition of the graph,

the domain is all the possible values of the function for which it gives definite value so it can be seen in the graph,

function gives definite value only in the interval (-6, 6)

The range is all the outputs for the input value of  domain

and it can be seen in the graph,

the output values are in the range of (0, 6)

Therefore, the domain and range are respectively (-6, 6) & (0,6)

To know more about Domain check:

https://brainly.com/question/28135761

#SPJ9

#5 ( List all methods that can possibly be used to solve a quadratic equation. (ii) Solve each equation for the unknown variable. State the method used and briefly explain why you decide to use that method. a. 2x^2 - 7x + 3 = 0 b. x^2 + 10x + 1 = 0 c. x² – 18=0

Answers

The solutions are x = 3√2 and x = -3√2.

There are several methods that can be used to solve a quadratic equation. The most commonly used methods are:

1. Factoring
2. Completing the square
3. Quadratic formula
4. Graphing

Now, let's solve each equation using one of the methods listed above.

a. 2x^2 - 7x + 3 = 0

We can use the factoring method to solve this equation. First, we need to find two numbers that multiply to give us 3 and add to give us -7. The numbers are -3 and -1. So, we can factor the equation as follows:

(2x - 1)(x - 3) = 0

Now, we can set each factor equal to zero and solve for x:

2x - 1 = 0 => x = 1/2

x - 3 = 0 => x = 3

So, the solutions are x = 1/2 and x = 3.

b. x^2 + 10x + 1 = 0

We can use the quadratic formula to solve this equation. The quadratic formula is:

x = (-b ± √(b^2 - 4ac))/(2a)

Plugging in the values of a, b, and c, we get:

x = (-(10) ± √((10)^2 - 4(1)(1)))/(2(1))

Simplifying, we get:

x = (-10 ± √96)/2

So, the solutions are x = (-10 + √96)/2 and x = (-10 - √96)/2.

c. x² – 18=0

We can use the square root method to solve this equation. First, we need to isolate the x^2 term on one side of the equation:

x^2 = 18

Now, we can take the square root of both sides:

x = ±√18

Simplifying, we get:

x = ±3√2

the solutions are x = 3√2 and x = -3√2.

Learn more about Vectors

brainly.com/question/30512630

#SPJ11

An ellipse has an equation of \( 9 x^{2}+ \) \( 16 y^{2}=144 \) 22. If the area enclosed by the ellipse on the first and second quadrant is revolved about the \( x \) - axis, what is the volume generated?
a.178.36 b. 150.41 C. 180.42 d. 162.42

Answers

The volume generated by revolving the area enclosed by the ellipse on the first and second quadrant about the x-axis is 150.41. The correct answer is option b

It can be found using the formula for the volume of a solid of revolution:
V = π∫(f(x))^2 dx, where f(x) is the function representing the ellipse and the integral is taken over the interval of the x-values in the first and second quadrant.


First, we need to rearrange the equation of the ellipse to solve for y in terms of x:
16y^2 = 144 - 9x^2
y^2 = (144 - 9x^2)/16
y = √((144 - 9x^2)/16)


Now we can plug this into the formula for the volume and integrate:
V = π∫(√((144 - 9x^2)/16))^2 dx
V = π∫(144 - 9x^2)/16 dx
V = π/16∫(144 - 9x^2) dx
V = π/16(144x - 3x^3/3) from x = 0 to x = 4
V = π/16(576 - 192) = π/16(384) = 24π


Therefore, the volume generated is 24π, or approximately 75.40. The correct answer is b. 150.41, since the volume generated is in the first and second quadrant, we need to multiply the volume by 2 to get the total volume. So the final answer is 24π * 2 = 48π ≈ 150.41. The correct answer is option b

To know more about ellipse here:

https://brainly.com/question/19507943

#SPJ11

In the drawing, >ℎ
. Which statement about the volumes of the two cylinders is true?

Answers

The volume of the left-hand cylinder is less than the volume of the right-hand cylinder.

What is a cylinder?

One of the most fundamental curvilinear geometric shapes, a cylinder has historically been a three-dimensional solid. It is regarded as a prism with a circle as its base in basic geometry. One of the fundamental three-dimensional shapes in geometry is the cylinder, which has two distant, parallel circular bases. At a predetermined distance from the centre, a curved surface connects the two circular bases. The axis of the cylinder is the line segment connecting the centres of two circular bases. The height of the cylinder is defined as the distance between the two circular bases.

The volume of the cylinder is given by:

V = π r² h

where r = radius

         h = height

Consider the left-hand side cylinder.

radius = h

height = g

Then the volume is V1 =  π h²g

Now consider the right-hand side cylinder

radius = g

height = h

Then the volume is V2 =  π g²h

It is given that g > h

Taking V1/V2 = π h²g/π g²h = h/g = k

where k is a constant.

Now V1 = k V2

This means that V2 will be k times V1.

So right-hand side cylinder has the largest volume among the two.

Therefore the volume of the left-hand cylinder is less than the volume of the right-hand cylinder.

To learn more about the cylinder, follow the link.

brainly.com/question/23935577

#SPJ1

Jamie works twice as many hours on the weekend as he does during the week. He earns $7.75 per hour. This week, he wants to earn at least 279 dollars. Will Jamie meet his goal by working 10 hours during the week? Show your work.​

Answers

Using algebra, we can conclude that, if Jamie only works 10 hours during the week, he will not be able to meet his goal of earning at least $279, because the total pay he will earn, which is $232.50, is less than the amount he wants to earn.

How to Use Algebra to Solve Problems?

The method to use to solve this problem would be algebra. We will use variables to represent the number of hours that Jamie works during the week and on the weekend, and we used equations to express the relationship between the total pay Jamie earns and the number of hours he works.

Let's first find out how many hours Jamie works during the week and on the weekend.

Let's say Jamie works x hours during the week. Then, he works 2x hours on the weekend.

The total amount of money Jamie earns is given by:

Total pay = Pay for week hours + Pay for weekend hours

Pay for week hours = $7.75 per hour * x hours

Pay for weekend hours = $7.75 per hour * 2x hours = $15.50 per hour * x hours

Total pay = $7.75x + $15.50x = $23.25x

Now let's substitute x = 10, since Jamie wants to work 10 hours during the week, to see if he can meet his goal of earning at least $279:

Total pay = $23.25 * 10 = $232.50

Since $232.50 is less than $279, Jamie will not meet his goal by working 10 hours during the week alone. He will need to work more hours during the week and/or on the weekend to reach his goal.

Learn more about algebra on:

https://brainly.com/question/22399890

#SPj1

(0, 1x4 – 1⁄2x³) ³
[tex](0.1x4 - \frac{1}{2} {x}^{3}) ^{3} [/tex]

Answers

The expanded form of the expression [tex](0.1x^4 - \frac{1}{2}x^3)^3[/tex] is,

[tex]0.001x^{12} - 0.015x^{11}- 0.15x^{10}-0.125x^9[/tex]

What is a polynomial?

A polynomial is an algebraic expression.

A polynomial of degree n in variable x can be written as,

a₀xⁿ + a₁xⁿ⁻¹ + a₂xⁿ⁻² +...+ aₙ.

We know, (a - b)³ = a³ - 3a²b + 3ab² - b³.

Given, [tex](0.1x^4 - \frac{1}{2}x^3)^3[/tex].

Here, [tex]a = 0.1x^4[/tex] and [tex]b = \frac{1}{2}x^3[/tex].

Therefore, [tex](0.1x^4 - \frac{1}{2}x^3)^3[/tex].

[tex]= (0.1x^4)^3 - (\frac{1}{2}x^3)^3 - 3.(0.1x^4)^2.\frac{1}{2}x^3 + 3.(0.1x^4).(\frac{1}{2}x^3)^2[/tex].

[tex]= 0.001x^{12} - 0.125x^9 - 0.015x^{11} - 0.15x^{10}[/tex].

[tex]= 0.001x^{12} - 0.015x^{11}- 0.15x^{10}-0.125x^9[/tex].

learn more about polynomials here :

https://brainly.com/question/11536910

#SPJ9

Write a division expression that reporesetns the weight of the steel structure divided bythe total weiught of the briudges material

Answers

The division expression that represents the weight of the steel structure divided by the total weight of the bridge's materials is 400 tons ÷ (1,000 tons + 400 tons + 200 tons) = 25%.

The total weight of the bridge's materials is the sum of the weight of concrete, steel structure, glass, and granite, which is:

1,000 tons + 400 tons + 200 tons = 1,600 tons

Simplifying the expression by dividing both numerator and denominator by 400 tons gives:

Weight of steel structure / Total weight of bridge's materials = [tex]\frac{1}{4}[/tex]

Weight of steel structure / Total weight of bridge's materials

[tex]= \frac{400 tons}{1,000 tons + 400 tons + 200 tons}[/tex]

[tex]= \frac{400 tons}{1,600 tons}[/tex] = 0.25

Therefore, the weight of the steel structure is one-fourth (or 25%) of the total weight of the bridge's materials.


To learn more about weight follow the link: https://brainly.com/question/10069252


#SPJ4


The complete question is:


Write a division expression that represents the weight of the steel structure divided by the total weight of the bridge's materials. Concrete weighs 1,000 tons, Steel structure weighs 400 tons and glass and granite weighs 200 tons.

Find a polynomial function of degree 3 with real coefficients
that has the given zeros. −3​, 4​,−5
The polynomial function is ​f(x)=x^3+..... x^2−17x−60.

Answers

The polynomial function is f(x) = x^3 + 4x^2 - 17x - 60.

To find a polynomial function of degree 3 with real coefficients that has the given zeros, we can use the fact that if a polynomial has a zero of x = a, then (x - a) is a factor of the polynomial. Therefore, if the polynomial has zeros of x = -3, x = 4, and x = -5, then the polynomial can be written in factored form as:

f(x) = (x + 3)(x - 4)(x + 5)

To find the polynomial function in standard form, we can multiply the factors:

f(x) = (x + 3)(x - 4)(x + 5)
f(x) = (x^2 - x - 12)(x + 5)
f(x) = x^3 + 5x^2 - x^2 - 5x - 12x - 60
f(x) = x^3 + 4x^2 - 17x - 60

Therefore, the polynomial function is f(x) = x^3 + 4x^2 - 17x - 60.

Learn more about polynomial function

brainly.com/question/12976257

#SPJ11

A cylindrical soup can is 6 cm in diameter and 12 cm tall.


A. If the diameter is 6 cm, what is the radius?


B. We use the formula to find the surface area of a cylinder (with r = radius & h = height).


C. Plug your "r", "h", and " 3.14 for n" into the formula.


Show your work and label your final answer to find the surface area of the soup can.

Answers

The radius of the cylinder is 3 cm and the surface area of the cylinder is 282.6 sq cm

How to determine the radius of the cylinderical base

The value of the cylinder diameter from the question is

Diameter = 6 cm

Calculating the radius, we get

So, we have

r = 6 cm/2

Evaluate

r = 3 cm

Calculating the surface area of the cylinder

The formula of the surface area of the cylinder is represented as

SA = 2πr(r + h)

By substitution, we have

SA = 2π * 3 * (3 + 12)

Evaluate

SA = 282.6

Hence, the surface area is 282.6

Read more about surface area at

https://brainly.com/question/16519513

#SPJ1

Find a polynomial function completely multiplied out with real coefficie that has the given zeros: 1,-4,(3+1) x^(3)+3x^(2)-4x

Answers

a polynomial function completely multiplied out with real coefficient  that has the given zeros is f(x) = x³-x²-16x+16

To find a polynomial function with the specified zeros that is fully multiplied out with real coefficients, we can use the fact that if a polynomial has a zero at x = a, then (x-a) is a factor of the polynomial. Therefore, we can write the polynomial as a product of its factors:

(x-1)(x+4)(x-(3+1)) = (x-1)(x+4)(x-4)

Now, we can multiply out the factors to get the polynomial in standard form:

(x-1)(x+4)(x-4) = (x²+3x-4)(x-4) = x³+3x^(2)-4x-4x²-12x+16 = x³-x²-16x+16

Therefore, the polynomial function completely multiplied out with real coefficients that has the given zeros is:

f(x) = x³-x²-16x+16

Learn more about polynomials at https://brainly.com/question/29256998

#SPJ11

Jaciee‘s mum says she has an hour before bed. Jenny Spends one third of the hour texting a Friend and one fourth of the hour to brushing her teeth and putting on pyjamas The rest of the time she read her book. How many minutes did Jaciee read

Answers

Step-by-step explanation:

1 hour = 60 minutes

1/3 × 60 minutes = 20 minutes texting a friend.

1/4 × 60 minutes = 15 minutes brushing and pyjamas.

the remaining time for reading we can get in 2 ways :

1. 60 - 20 - 15 = 25 minutes reading

2. via the fractions

1/1 is the whole hour

1/1 - 1/3 - 1/4

to make this calculation, we need to bring all fractions to the same denominator.

the smallest number (LCM - least common multiple) that can be divided by 1, 3 and 4 is 12

1/1 × 12/12 = 12/12

1/3 × 4/4 = 4/12

1/4 × 3/3 = 3/12

so,

12/12 - 4/12 - 3/12 = 5/12

5/12 × 60 minutes = 5× 60/12 = 5×5 = 25 minutes reading.

HURRY!!!
The height of a tower on a scale drawing is 12 centimeters. The scale is 2 cm : 25 m. What is the actual height of the tower?

Answers

Answer:

Step-by-step explanation:

300

Answer:150 m

Step-by-step explanation:

2cm/25 m = 2 cm: 2500 cm= 1cm:1250 1250x12=15000 convert back to meters 150 m

I need help with all of this please I need help

Answers

The solution are,

angle P = 130 degrees

arc SF = 50 degrees

What is an angle?

Angle may be mentioned as a figure which can be defined as that is formed by two rays or lines that shares a common endpoint is called an angle. The two rays are called the sides of an angle, and the common endpoint is called the vertex.

here, we have,

from the given diagram we get,

angle P = 130 degrees because it is alternate adjacent to 130 degrees.

now, we have,

130 = 1/2(210+SF)

130 = 105+1/2SF

1/2SF = 25

arc SF = 50 degrees

Hence, The solution are,

angle P = 130 degrees

arc SF = 50 degrees

To learn more on angle click:

brainly.com/question/28451077

#SPJ9

Use Descartes's Rule of Signs to determine the possible numbers of positive and negative real zeros of f(x)=8x^(4)-7x^(3)-4x^(2)-2x+7

Answers

The final answer of Using Descartes's Rule of Signs, we can determine that there are either 2 or 0 positive real zeros and 0 negative real zeros of [tex]f(x)=8x^4-7x^3-4x^2-2x+7[/tex]

To determine the possible numbers of positive and negative real zeros of f(x)=8x^(4)-7x^(3)-4x^(2)-2x+7 using Descartes's Rule of Signs, we must first count the number of sign changes in the polynomial.

For positive real zeros, we look at the original polynomial: f(x)=8x^(4)-7x^(3)-4x^(2)-2x+7.

There are two sign changes: from 8x^(4) to -7x^(3) and from -2x to +7.

Therefore, there are either 2 or 0 positive real zeros.

For negative real zeros, we look at the polynomial with x replaced by -x: f(-x)=8(-x)^(4)-7(-x)^(3)-4(-x)^(2)-2(-x)+7.

Simplifying, we get [tex]f(-x)=8x^4+7x^3-4x^2+2x+7[/tex]. There are no sign changes in this polynomial, so there are 0 negative real zeros.

In conclusion, Using Descartes's Rule of Signs, we can determine that there are either 2 or 0 positive real zeros and 0 negative real zeros of [tex]f(x)=8x^4-7x^3-4x^2-2x+7[/tex]

To know more about Descartes's Rule refer here:

https://brainly.com/question/30493468#

#SPJ11

Apparently i got a 40 but i can redo it again, any help?
2- Not J
3- Not B
4- Not F
7- Not 6
8- Not J
9- Not C

Answers

If you use pm most of the time it will help you plus it doesn’t cost anything

27^2/3 * sqrt{16 } ÷5^0
(2^2 * 2^1/3)^0
12x^7/4x^3
\sqrt

Answers

The value of the numerical expression will be 36. Then the correct option is 36.

What is Algebra?

Algebra is the study of abstract symbols, while logic is the manipulation of all those ideas.

The definition of simplicity is making something simpler to achieve or grasp while also making it a little less difficult.

The numerical expression is given below.

[tex]\rightarrow \dfrac{\left ( 27 \right)^{2/3} \times \sqrt{16}}{5^0}[/tex]

Simplify the expression, then we have

⇒ (∛(27)² × √16) / 5⁰

⇒ (3)² × 4

⇒ 9 × 4

⇒ 36

The value of the numerical expression will be 36. Then the correct option is 36.

More about the Algebra link is given below.

https://brainly.com/question/953809

#SPJ1

The complete question is given below.

Compute the expression [tex]\dfrac{\left ( 27 \right)^{2/3} \times \sqrt{16}}{5^0}[/tex]

a) 36

b) 35

c) 34

d) 1

Other Questions
The City of Atlanta is closest to this form of municipal government:a. Strong mayor / weak councilb. Weak mayor / strong councilc. Council-Mangerd. Commission Malik plans to make changes to his yard. He wants to double the lengths of the sidesof the garden, using the right angle vertex as the center of dilation. His garden willthen be rotated 180 about the right angle vertex and moved 11 feet to the right and13 feet up. If 10-year T-bonds have a yield of 6.28, 10-year, corporate bonds yield8.58, the maturity risk premium on all 10-year bonds is 1.38, andcorporate bonds have a 0.48 liquidity premium versus a zero liquiditypremium for T-bonds, what is the default risk premium on the corporatebond?1. 9082.0982.3082.5392.788 I NEED HELP REALLY BAD MY MOM MIGHT GROUND ME Which statement describes what happens when (4, 6) is reflected across the y-axis? Select all that apply. Point a,b, and c are collinest. Point b is between a and c. AC = -3 + 6x, AB = 3x - 3, and BC = 9. Find x. Simplify. \( \frac{-9 y-81}{y+9} \) Question Help: Message instructor D Post to forum PreparationIn this assignment, well return to Sun City Boards and the management challenges they face. With your advice, Tom Wilson (the owner) has continued to make strategic planning progress, but you and Tom realize that a new organizational structure is needed for the company to grow as you envision. Plans include expanding beyond a single store/manufacturing shop and reaching new markets via an Internet presence and e-commerce. The following is a summary of the current staff and loose descriptions of job functions:Owner/CEOTom Wilson (Designs the boards, sets their selling price, and establishes sales channels with local surf shops)BookkeeperSarah Balanced (Sarah also doubles as order-taking clerk, cash register attendant, and customer complaint listener)Board MakerJack Ovalltrades (If Tom invents it, Jack can make it!)Board Making AssistantsJill, Jane, & Judy (Assignments change almost daily as Jack decides what needs to be done next)Sales AssociateKelly Dude (Named after famed surfer Kelly Slater and a business icon for Sun City Boards; visits surf shops and occasionally closes a sale)Part-time AssociatesHired as needed for inventory management (cleanup), promotional events, etc.Module 5 Organizational Structure and Processes Learning UnitLinks to an external site. provides examples of organizational structures. As Toms advisor, your assignment now is to select one of the organizational structures presented in the Learning Unit, describe how it works, chart the future structure for Sun City, and explain why you prescribe it. The following steps will help you prepare for your written assignment:Thoroughly read Module 5 Organizational Structure and Processes Learning UnitLinks to an external site..Carefully consider the various organizational structures, their key structural components, and organizational timing relevant for Sun City. Consider the internal and external environmental factors, as well as current trends.Your TaskSelect one of the Organizational Structures from your reading for Sun City.Create a Future State Organizational Chart for Sun City. You may use a presentation tool of your choice. There are numerous organizational chart format inserts available in popular software. Microsoft Word and PowerPoint have Hierarchy charts found on the Insert tab under SmartArt. Your organization chart should contain the title of the job function, even if no Sun City employee currently fills that role. You may also recommend a reporting structure for the existing employees within the new structure.Write at least two paragraphs describing your chosen structure and why you selected it. Your written explanation must include three properly referenced and defined terms from the module reading. For example, if you select a functional structure, explain each relevant function. Solve the system. If the system has an infinite number of solutions, parameterize them by writing the answers in terms of the parametert(so you may need to write each of x, y, z as a formula involving t ){2x+3y4z=20{x+y3z=0{x+3y7z=8 The selling price of each cup of lemon juice is 3/2 times as much as the selling price of a cup of apple juice. For every 2 cups of lemon juice sold, Mr Tan sells 5 cups of apple juice. He earns $12 more from apple juice than from lemon juice. How much does Mr Tan earn altogether? The basic units of information that encode the proteins neededto grow and function as a living organism are called___. Read the excerpts from 'Take the Tortillas Qut of Your Poetry' and "Speaking Arabic."My friend had concluded that if he took his language and culture out of his poetry, he stood a better chance ofreceiving a fellowship. He took out his native language, the poetic patois of our reality, the rich mixture ofSpanish, English, pachuco and street talk which we know so well. In other words, he took the tortillas out ofhis poetry, which is to say he took the soul out of his poetry.At a neighborhood fair in Texas, somewhere between the German Oom-pah Sausage Stand and the MexicanGorditas booth, I overheard a young man say to his friend, "I wish I had a heritage. Sometimes I feel-solonely for one." And the tall American trees were dangling their thick branches right down over his headWhich structural element is used in the excerpt by Anaya but not in the excerpt by Nye?O pathosO anecdoteO toneO logos This assignment will allow you to begin thinking and practicing on Market Segmentationwhich is part of your final project submission. Determine the market segmentation of a l-Robot Roomba. Please make sure to do your research on this product as you will for the11 products listed in your final project.Be specific on your target markets. Use your judgment and justify every target market.Make sure to be specific when listing the target markets. "Women age 20-50 is NOTspecific enough". Think about if you were the person creating an advertising campaign,you would know that you can't hit everyone even if everyone may purchase the product.This would be way too expensive of an advertising campaign!!!! Think about specificmagazines or television shows that might hit that target. You MUST JUSTIFY why youchose that particular market. Make sure to list geographics, demographics,psychographics as well as product usage. Consider a sample with data values of 26, 24, 20, 15, 31, 33, 28, and 24. Compute the range, interquartile range, variance, and standard deviation (to a maximum of 2 decimals, if decimals are necessary).Range Interquartile range Variance Standard deviation You fill a rigid steel cylinder that has a volume of 20. 0 L with 10. Moles of nitrogen gas at 313 K. What is the final pressure in kPa in the cylinder? what is the beginning part of the story singa? help me!!! What are the Analects? Can money fix everything Suppose we are trying to estimate the average annual salary of all high school teachers in a particular region. After gathering data on 100 teachers, we have determined the sample mean to be $50,000 and the sample standard deviation to be $5,000. What is the t-statistic associated with this sample if information from the government reveals that the actual average salary (the population mean salary) is $49,000? Need help with math problem Compare how African Americans gained leadership roles and did not gain support to Mexican Americans as well as Native Americans.