What is the result when the following code is run? double x = 1; double y = 1; int i = 0; do { y = x / 2; x = x + y; i = i + 1; } while (x < 2.5); System.out.print(i + " ");

Answers

Answer 1

Answer:

The answer is: 3

Step-by-step explanation:

1. At the begining of the program we start by declairing the variables:

 double x=1, double y=1 and int i=0.

2. The structure do...while is used to defined the loop. x<2.5 is the finalization condition of the loop. i is the counter of the loop.

y=x/2 is the first calculation

x=x+y is the second one. Here is where the values of the variable x changes.

a) for the first iteration, the values of y and x are shown below:

[tex]\\\\x=1\\y=1\\y=1/2=0.5\\x=1+0.5=1.5\\i=1[/tex]

The variable x is minor to 2.5 so the loop will continue computing.

b)   the second iteration, the values of y and x are shown below::

 [tex]y=0.5\\x=1.5\\y=\frac{1.5}{2}=0.75\\ x=1.5+0.75=2.25\\i=2[/tex]

The variable x is still minor to 2.5 so the loop will continue computing.

c) third iteration:

[tex]y=0.75\\x=2.25\\y=\frac{2.25}{2} =1.1125\\x=2.25+1.125=3.375\\i=3[/tex]

The condition x<2.5 is not true so the loop ends.

3. System.out.print(i + " "); displays the value of the variable i wich value is 3.

Therefore the number 3 is display.


Related Questions

Based on your budget, which transportation option is the best financial decision for you? Explain your answer in at least two sentences.

Answers

Answer:

compare your total monthly incoming with your total monthly outgoing. How balanced is your budget at this point? Remember that you estimated some of your expenditures. You can't know for sure until you actually track your expenses for at least a month and have real numbers to work with.

Step-by-step explanation: Basically it helps you decide how you want to manage your budget

Option C is the best choice to make the best financial decision to make.

What is up front cost?

An upfront cost is an initial sum of money owed in a purchase or business venture.

What is Monthly payment?

The monthly payment is the amount paid per month to pay off the loan in the time period of the loan.

According to me the best choice is Option C buy used.

this is because it's upfront front cost is less comparable to other two.

Whereas,  Option A is not good choice, because the monthly payments will be too high .

and, Option B is not a good choice.

This is because it requires high up-front cost as compared to other and there will be problem, mileage restriction.

For third option, the person will get the car outright once the loan is paid and it's cheaper.

option C is the best financial decision to make.

Learn more financial decision here:

https://brainly.com/question/10164747

#SPJ2

Bill spent 60 dollars on fertilizer and weed killer for his lawn. Each pound of fertilizer costs 75 cents, and each ounce of weed killer costs $2.50. What equalion can represent the relationship between the number of pounds of fertilizer bill bought, x , and the number of ounces of weed killer he bought, y?

Answers

Final answer:

The equation 0.75x + 2.5y = 60 represents the relationship between the number of pounds of fertilizer (x), and the number of ounces of weed killer (y) that Bill bought with his $60.

Explanation:

The question is asking for an equation that could describe how the 60 dollars was spent on fertilizer and weed killer. To represent this relationship, we can set up a linear equation, with x representing the pounds of fertilizer and y representing the ounces of weed killer. Given that each pound of fertilizer costs 75 cents and each ounce of weed killer costs $2.50, the total amount spent on these two items can be represented as 0.75x + 2.5y = 60. This equation depicts how Bill's 60 dollars were allocated to the two items.

Learn more about Linear Equation here:

https://brainly.com/question/32634451

#SPJ12

Do bicycle riders start from the same point and ride in opposite directions. Rider x moves twice as fast a rider y and In three hours they are 72 miles apart

Answers

Complete question:

Two bicycle riders start from the same point and ride in opposite directions. Rider x moves twice as fast as rider y and in three hours they are 72 miles apart. Find the rate (speed) of each rider.

Answer:

y = 8 miles/hour

x = 16 miles/hour

Step-by-step explanation:

We can solve this question by first setting up the following equations:

Rider x travels twice as fast as rider y:

x = 2*y                - Equation 1

In three hours they are 72 miles apart:

3*x + 3*y = 72              -Equation 2

Solving equations 1 and 2 simultaneously we get:

y = 8 miles/hour

x = 16 miles/hour

This question is done simply by writing down the question statements as equations. This can be seen being done in Equation 1 and Equation 2 above.

SOMEBODY CAN YOU HELP?

Answers

Answer:

A.

Step-by-step explanation:

Since the line goes down 4 and right 5, your slope would be -4/5 and since your y-intercept is at (0,-5) you would plug that in for b.

I hope this helped! Please mark Brainliest if you can :)

The middle school camera club sold 242 bulbs and 360 daffodil bulbs. Students to buy the bulbs into 100 bags to sell at the school fair. Write an expression to show how many bulbs went into each of the 100 bags with students put the same number of each kind of bulb in each bag.??? I need the expression not like 600 equals 100 X like 240÷360 equals 100×300 like that I am confused can someone please help me

Answers

Answer:

345

Step-by-step explanation:

345

A pentagon has all sides equal. A rectangle has width twice as long as the side of the pentagon and length four times as long. The perimeter of the rectangle is 30 inches. What is the perimeter of the pentagon?

Answers

Answer: the perimeter of the Pentagon is 12.5 inches

Step-by-step explanation:

Let x represent the length of each side of the Pentagon.

A rectangle has width twice as long as the side of the pentagon. This means that the width of the rectangle, w is 2x

The rectangle has length four times as long as the side of the pentagon. This means that the length of the rectangle, l is 4x

The formula for determining the perimeter of a rectangle is expressed as

Perimeter = 2(l + w)

The perimeter of the rectangle is 30 inches. This means that

2(2x + 4x) = 30

12x = 30

x = 30/12 = 2.5

A Pentagon has 5 sides. This means that the perimeter of the Pentagon is

5 × 2.5 = 12.5 inches

Write a statement that declares and initializes two integer variables. Call the first one age and initialize it to 15, and call the second one weight and initialize it to 90.

Answers

Answer:

First is to define the language in which to make the statement, I chose the language C, because it is the most common. To initialize the variable, the first thing is to define the type, in this case it is an integer type.

In language C, that is determined by int, then the name of the variable, in this case it would be age. We close with; To finish the order. Then we give the courage that asks us to initiate.

In the end, it would look like this:

int age;

age = 15;

int weight;

weight = 90;

Final answer:

To declare and initialize two integer variables called age and weight, one can use the code 'int age = 15, weight = 90;'.

Explanation:

To declare and initialize two integer variables in most programming languages, you can use a single line of code. For the variables age and weight, the statement might look like this:

int age = 15, weight = 90;

This line of code creates two variables of type integer named age and weight. The variable age is initialized with the value 15, and weight is initialized with the value 90.

The use of the comma in the statement allows for both variables to be declared and initialized in one concise statement.

Write an R-program to sample n = 1000 values from the BlackwellMacQueen Pólya urn for µ = αH where H is a non-atomic bivariate distribution of your choice.

Answers

poyo and churizzo uiouigyuftydfyitfogpghlhbl

A school district need 3 teachers for every 70 children . They expect to have 14,700 in the district next year. At this time they have 612 teachers so how many more do they need

Answers

Answer: They need 18 teachers more.

Step-by-step explanation:

Hi, to solve this problem, first, we have to divide the expected number of children (14,700) by 70.

14,700 / 70 = 210 groups of 70 children

We obtain that they are expecting 210 groups of 70 children each. Since the school district needs 3 teachers for every 70 children, we have to multiply the number of groups (210) by the number of teachers per group (3).

210 x 3 = 630 teachers

We obtained the total number of teachers needed for 14,700 children.

Since at this time the district has 612 teachers, to find the teachers missing we have to subtract the actual number of teachers (612) to the number of teachers needed (630).

630 - 612 = 18

They need 18 teachers more.

An album sells for $12.00 through an online music service. If the album is 20% off, and sales tax is 5%, what is the total price of the album including tax?

Answers

Answer:

Total price of the album including tax is $10.08

Step-by-step explanation:

Sales price without discount and tax = $12

% discount = 20%

Sales price with discount = 12 - (20/100 × 12) = 12 - 2.4 = $9.6

% sales tax = 5%

Tax = 5/100 × 9.6 = $0.48

Total price of the album including tax = $9.6 + $0.48 = $10.08

Answer:

Final price = 9.6*(105/100) = 9.6*1.05 = 10.08 $

Step-by-step explanation:

The original price of the album is 12 to find out the price after the discount is applied we need to compute 100% - 20% = 80% of the original price. So we can use the following expression:

Price after discount = original price * (80/100)

Price after discount = 12 * (80/100)

Price after discount = 12 * 0.8 = 9.6 $

Now we have to include the sale tax of 5%, since it's a tax we need to add it to the original value so 100% + 5% = 105% of the sale's price:

Final price = Price after discount * (105/100)

Final price = 9.6*(105/100) = 9.6*1.05 = 10.08 $

An SRS of size n was taken to estimate mean body mass index (BMI) for girls between 13 and 19 years of age. The 95% confidence interval obtained had lower limit 19.5 and upper limit 26.3. Which of the following is NOT true? 1. A total of 95% of all teenage girls have BMI between 19.5 and 26.3. 2. The margin of error is 34. 3. The value z in the margin of error is 1.96. 4. A total of 95% of all SRS of size n contain the true mean BMI

Answers

Answer:

Option 1 is the only untrue statement of the 4 statements.

The only wrong statement about the confidence interval above is the one about the total of 95% of all teenage girls having BMI between 19.5 and 26.3.

Step-by-step explanation:

The question provides that for the BMI of girls with age between 13 and 19, the 95% confidence interval has a lower limit of 19.5 and an upper limit of 26.3.

We will take the statement one after the other.

Statement 1: A total of 95% of all teenage girls have BMI between 19.5 and 26.3.

This is a wrong statement. It doesn't not follow the definition for confidence interval for a set of sample.

Rather confidence interval, expresses that the true value (mean) exists in the (lower limit, upper limit) range with a confidence level of 95%.

Statement 2: The margin of error is 34.

The margin of error is usually used to calculate the lower and upper limit of the confidence interval.

Basically, the interval is usually between

(Sample mean ± margin of error)

If the sample mean = xbar

And the margin of error = α

xbar - α = lower limit of the confidence interval = 19.5

xbar + α = upper limit of the confidence interval = 26.3

xbar - α = 19.5

xbar + α = 26.3

summing these together

xbar = (19.5+26.3)/2 = 22.9

and the margin of error = (22.9 - 19.5) or (26.3 - 22.9) = 3.4.

So, this statement is correct!

Statement 3: The value z in the margin of error is 1.96.

The margin of error is given as the product of the z-multiplier (from the z-tables) and the sample standard deviation.

The z-multiplier for a 95% confidence interval, as obtained from literature and the z-tables is truly 1.96.

This statement is very true.

Statement 4: A total of 95% of all SRS of size n contain the true mean BMI.

Just like I described the meaning of confidence interval in the explanation under the first statement, this is as close to the meaning of confidence interval as can be. This statement is also very true.

Hence, only statement 1 is not correct of the 4 statements.

Write the polar equation in rectangular form.
r = 6 sin θ


Y=-6x

Y=x-3

X^2+(y-3)^2=9

(X-3)^2+y^2=9

Answers

Answer:

Step-by-step explanation:

The identities you need here are:

[tex]r=\sqrt{x^2+y^2}[/tex]  and   [tex]r^2=x^2+y^2[/tex]

You also need to know that

x = rcosθ  and

y = rsinθ

to get this done.

We have

r = 6 sin θ

Let's first multiply both sides by r (you'll always begin these this way; you'll see why in a second):

r² = 6r sin θ

Now let's replace r² with what it's equal to:

x² + y² = 6r sin θ

Now let's replace r sin θ with what it's equal to:

x² + y² = 6y

That looks like the beginnings of a circle.  Let's get everything on one side because I have a feeling we will be completing the square on this:

[tex]x^2+y^2-6y=0[/tex]

Complete the square on the y-terms by taking half its linear term, squaring it and adding it to both sides.

The y linear term is 6.  Half of 6 is 3, and 3 squared is 9, so we add 9 in on both sides:

[tex]x^2+(y^2-6y+9)=9[/tex]

In the process of completing the square, we created within that set of parenthesis a perfect square binomial:

[tex]x^2+(y-3)^2=9[/tex]

And there's your circle!  Third choice down is the one you want.

Fun, huh?

The polar equation r = 6 sinθ is converted to rectangular form using the sine and cosine functions, eventually leading to a quadratic equation in terms of x and y as (x^2 + y^2)y^2 = 36x^2 + 36y^2..

To convert the polar equation r = 6 sinθ into rectangular form, we use the relationships

x = rcosθ and y = r *sinθ.

Substituting for r from the given equation, we have

y = (6sinθ) * sinθ = 6 sin^2θ. Now, since sin^2θ = 1/2 - 1/2cos(2θ), and  

cos(2θ) = 1 - 2sin^2θ,

we can express this in terms of x and y as

cos(2θ) = 1 - 2(y/6)^2.

Therefore, y =1/2 - 1/2(1 - 2(y/6)^2) simplifies to y^2 = 36(1 - cos^2 θ).

Since cos^2 θ =x^2/r^2 =  x^2/x^2+y^2, we plug this back into the equation to get

y^2 = 36 -36x^2/x^2+y^2.

Multiplying through by (x^2+y^2) we end up with (x^2 + y^2)y^2 = 36x^2 + 36y^2.

An investor purchased 100 shares of Fifth Third Bank stock and 100 shares of Santee Electric Cooperative stock. The probability the bank stock will appreciate over a year is 0.70. The probability the electric utility will increase over the same period is 0.60. Assume the two events are independent.a. What is the probability both stocks appreciate during the period?
b. What is the probability the bank stock appreciates but the utility does not?
c. What is the probability at least one of the stocks appreciates?

Answers

Answer:

(a) 0.42

(b) 0.28

(c) 0.88

Step-by-step explanation:

Let probability that the bank stock will appreciate over a year, P(A) = 0.70

Probability that the electric utility will increase over the same period, P(B) = 0.60

Also, it is given that the two events are independent.

(a) Probability that both stocks appreciate during the period = Bank stock will appreciate * Electric utility will appreciate = P(A) * P(B)

     = 0.70 * 0.60 = 0.42 .

(b) Probability that the bank stock appreciates but the utility does not is given by;

     P(A) * (1 - P(B)) = 0.70 * (1 - 0.60) = 0.70 * 0.40 = 0.28 .

(c) Probability that at least one of the stocks appreciates = P(A [tex]\bigcup[/tex] B)

    P(A [tex]\bigcup[/tex] B) = P(A) + P(B) - P(A [tex]\bigcap[/tex] B)

                   = 0.70 + 0.60 - (0.70 * 0.60)   { because both events are

                                                                           independent }

                   = 1.3 - 0.42 = 0.88 .

Need help on the last problem please...

Answers

Answer:

y = 97°

Step-by-step explanation:

z = 180 - 55 - 42 = 83

Total angle in a triangle is 180°

y = 180 - z = 180 - 83 = 97°

Supplementary angles

The perimeter of a square must be greater than 148 inches but less than 196 inches. Find the range of possible side lengths that satisfy these conditions. (Hint: The perimeter of a square is given by P=4s, where s represents the length of a side).

Answers

Final answer:

The possible range for the side length of the square is that it is greater than 37 inches, but less than 49 inches.

Explanation:

The perimeter of a square is given by the formula P=4s, where s is the length of one side of the square. Since we know the perimeter must be greater than 148 and less than 196 inches, we can create inequality equations to solve for the side lengths, s.

Given the lowest limit, 148 < 4s. Divide both sides by 4, we get 37 < s.

 

Given the highest limit, 4s < 196. Again, divide both sides by 4, we get s < 49.

So, we conclude that the length of a side, s, must be less than 49 inches but greater than 37 inches to meet the required conditions of the question.

Learn more about Square Side Length here:

https://brainly.com/question/33930998

#SPJ3

NEED HELP ASAP PLEASE!!

Answers

Answer:

5 5/6

Tell me if u got it right

Suppose the position of an object moving in a straight line is given by s (t )equals 4 t2+ 5 t+ 5. Find the instantaneous velocity when t equals 2. What expression can be used to find the instantaneous velocity at the given​ time?

Answers

Answer:

[tex] v(t) = 8t +5[/tex]

And that represent the instantaneous velocity at a given time t.

And then we just need to replace t =2 in order to find the instantaneous velocity and we got:

[tex] v(t=2) = 8*2 + 5 = 16+5 = 21[/tex]

Step-by-step explanation:

For this case we have the position function s(t) given by:

[tex] s(t) = 4t^2 + 5t+5[/tex]

And we can calculate the instanteneous velocity with the first derivate respect to the time, like this:

[tex] v(t) = s'(t)= \frac{ds}{dt}[/tex]

And if we take the derivate we got:

[tex] v(t) = 8t +5[/tex]

And that represent the instantaneous velocity at a given time t.

And then we just need to replace t =2 in order to find the instantaneous velocity and we got:

[tex] v(t=2) = 8*2 + 5 = 16+5 = 21[/tex]

In the cafeteria 100 milk cartons were put out for breakfast. After breakfast there were 40 milk cartons left. What is the ratio of milk cartons left over to milk cartons taken?

Answers

Final answer:

The ratio of milk cartons left over to milk cartons taken from the 100 initially provided in the cafeteria is 2:3.

Explanation:

The number of milk cartons put out for breakfast in the cafeteria was 100 and after breakfast, there were 40 milk cartons left. This means that the number of milk cartons taken at breakfast is 100 - 40, which is 60. Thus, the ratio of milk cartons left over to milk cartons taken is 40:60.

We can simplify this ratio by finding the greatest common divisor (GCD) of both numbers. In this case, the GCD of 40 and 60 is 20, so by dividing both numbers by 20, we get a simplified ratio of 2:3. Therefore, the ratio of milk cartons left over to milk cartons taken is 2:3.

Learn more about Ratio here:

https://brainly.com/question/32531170

#SPJ12

Please help. Trig: Laws of Cosines
If a rhombus whose side measures 6 and the smaller angle is 145*, find the length of the larger diagonal, to the nearest tenth.

Answers

Answer:

11.4 units

Step-by-step explanation:

diagonal² = 6² + 6² - 2(6)(6)cos(145)

diagonal² = 130.9789471888

diagonal = 11.444603409

The voltage across the capacitor increases as a function of time when an uncharged capacitor is placed in a single loop with a resistor and a battery.
What mathematical function describes this behavior?
1. Exponential2. Linear 3. Quadratic 4. Power

Answers

Answer:

  1. Exponential

Step-by-step explanation:

The problem statement is insufficient to describe the behavior.

_____

The capacitor's voltage is described by a differential equation such that its rate of change is proportional to the difference of the battery voltage and the capacitor voltage. The solution to the differential equation is a function that is exponential with time.

what does it mean when someone’s says “ Ion like clowns “

Answers

Answer:

Lol it either means that they don't like a clown such as comic performer who employs slapstick or similar types of physical comedy, often in a mime style.

or a person that's been fooled and has been called a clown.

Person A can complete a job in 6 hours. Person B can complete the same job in 4 hours. Working at the same rate, how many hours will it take both of them to complete the job?

Answers

Answer: it will take both of them 2.4 hours to complete the job.

Step-by-step explanation:

Person A can complete a job in 6 hours. This means that the rate at which Person A can complete the job per hour is 1/6

Person B can complete the same job in 4 hours. This means that the rate at which Person A can complete the job per hour is 1/4

If they work together, they would work simultaneously and their individual rates are additive. This means that their combined working rate would be

1/6 + 1/4 = 5/12

Assuming it takes t hours for both of them to clean the room working together, the working rate per hour would be 1/t. Therefore,

5/12 = 1/t

t = 12/5

t = 2.4 hours

Austin scored 85 on the calculus midterm. If the final exam counts twice as much as the midterm​ exam, then for what range of scores on the final would Austin get an average between 85 and 96​? Both tests have a maximum of 100 points.

Answers

Answer:

Austin should score between 85 and 100 in the final exam to have an average between 85 and 95, since reaching 96 is mathematically impossible.

Step-by-step explanation:

The problem has to be solved in two parts, the first to obtain an average of 85 and the second to obtain an average of 96.

In the first part with an average of 85 would be as follows.

Let x be the final exam grade.

Weighted average = (85 + 2 * X) / 3

85 = 85/3 + (2/3) * X

Rearranging

X = (3/2) * (85- (85/3))

Resolving

X = 85, therefore you must take 85 in the final test to get an average of 85.

The second part with an average of 96:

96 = 85/3 + (2/3) * X

Rearranging

X = (3/2) * (96- (85/3))

Resolving

X = 101.5, therefore you must take 101.5 in the final test to get an average of 96, therefore it is impossible to have an average of 96, because the highest score is up to 100.

Taking 100 your average would be:

Weighted average = (85 + 2 * 100) / 3 = 95

Then Austin should score between 85 and 100 in the final exam to have an average between 85 and 95, since reaching 96 is mathematically impossible.

Austin should score between [tex]85[/tex] and [tex]100[/tex] in the final exam to have an average between [tex]85[/tex]  and [tex]95[/tex].

Average :

Let us consider that  [tex]X[/tex] be the final exam grade.

So that, Weighted average [tex]= \frac{85 + 2 * X}{3}[/tex]

               [tex]85 =\frac{85}{3} + \frac{2}{3} X\\\\\frac{2}{3} X=85-\frac{85}{3} \\\\X=85[/tex]

Thus, you must take 85 in the final test to get an average of 85.

The second part with an average of 96:

[tex]96 = \frac{85}{3} + \frac{2}{3} X\\\\\frac{2}{3}X=96-\frac{85}{3}\\ \\ X=101.5[/tex]

Thus,  it is impossible to have an average of 96, because the highest score is up to 100.

Taking 100 your average would be:

Weighted average [tex]=\frac{85 + 2 * 100}{3} =95[/tex]

Hence,  Austin should score between 85 and 100 in the final exam to have an average between 85 and 95.

Learn more about the Average of data here:

https://brainly.com/question/19243813

how to solve for 8^x=2 (I know the answer is 1/3 but i have to show work and i don't know the process to solve it)

Answers

Answer:

  x = 1/3 . . . . math facts or logarithms are involved; take your pick

Step-by-step explanation:

When you are solving for a variable that is in an exponent, logarithms are often useful. Taking the log of both sides of this equation, you have ...

  log(8^x) = log(2)

Using the rules of logarithms, that is ...

  x·log(8) = log(2)

  x = log(2)/log(8) . . . . . divide by the coefficient of x

You can find the value of this on your calculator, and it will tell you the value is  0.333333333333 or as many digits as your calculator displays. That is a clue that the exact answer is probably 1/3.

__

You should recognize that 8 = 2·2·2 = 2^3, so log(8) = 3log(2) and the above solution becomes ...

  x = log(2)/(3log(2)) = 1/3

__

Recognizing that 8 = 2^3, you can make that substitution into the original equation to get ...

  (2^3)^x = 2

  2^(3x) = 2^1

  3x = 1 . . . . . . . matching exponents; equivalent to taking logs base 2

  x = 1/3 . . . . . .  divide by 3

__

All of the above using 2 as a base of exponents is just dancing around the fact that you already know the math fact ...

  8^x = 2 = 8^(1/3)

  x = 1/3 . . . . . equating exponents; equivalent to taking logs base 8

Four friends went out to lunch. They each started with the same amount of money, and they each spent 6 They ended with a combined total of 12 How much money did each of them have to start?

Answers

Answer:

3 pls pass brainlist

Step-by-step explanation:

because 3*4 is 12

The point (4, –3) is on the terminal side of an angle in standard position. Determine the value of r, and the exact value of sin, cos, and tan for this angle.

Answers

Answer:

The answer to your question is below

Step-by-step explanation:

Data

A (4 , -3)

r = ?

sin = ?

cos = ?

tan = ?

Process

1.- Plot the point

This point is in the fourth quadrangle

2.- Calculate r

We have the Opposite side and the Adjacent side

       tan Ф = -3/4

       tan⁻¹ Ф = Ф = 323.1

        Ф = 323.1°

3.- sinФ =

Calculate the hypotenuse

        c² = 4² + (-3)²

        c² = 16 + 9

        c² = 25

        c = 5

 sinФ = -3/5

cos Ф = 4/5

tan Ф = -3/4

Final answer:

The value of r is 5. The exact value of sin is -3/5, cos is 4/5, and tan is -3/4.

Explanation:

The value of r can be found using the Pythagorean theorem, which states that for any point (x, y) on the terminal side of an angle in standard position, the value of r can be calculated as √(x^2 + y^2). In this case, we have (x, y) = (4, -3), so r = √(4^2 + (-3)^2) = √(16 + 9) = √25 = 5.

The exact value of sin for this angle can be calculated as y/r, so sin = -3/5.

The exact value of cos for this angle can be calculated as x/r, so cos = 4/5.

The exact value of tan for this angle can be calculated as y/x, so tan = -3/4.

Learn more about Finding value of r, sin, cos, and tan for an angle in standard position here:

https://brainly.com/question/35658077

#SPJ3

You can find a rectangle's perimeter by ________. A multiplying its length by its width B multiplying its length by 2 and multiplying its width by 2 and adding the products C subtracting its length from its width D dividing its length by 2 and dividing its width by 2 and adding the quotients

Answers

Answer:

B

Step-by-step explanation:

the reason why b is the answer is because the perimeter is the outside of the rectangle and you are just ummm yea its b. another way is to add all the sides up and you would get your answer.

A coin is flipped 10 times where each flip comes up either heads or tails. How many possible outcomes (a) contain exactly two heads? (b) contain at most three tails? (c) contain the same number of heads and tails?

Answers

Answer:

a. 45

b. 176

c. 252

Step-by-step explanation:

First take into account the concept of combination and permutation:

In the permutation the order is important and it is signed as follows:

P (n, r) = n! / (n - r)!

In the combination the order is NOT important and is signed as follows:

C (n, r) = n! / r! (n - r)!

Now, to start with part a, which corresponds to a combination because the order here is not important. Thus

 n = 10

r = 2

C (10, 2) = 10! / 2! * (10-2)! = 10! / (2! * 8!) = 45

There are 45 possible scenarios.

Part b, would also be a combination, defined as follows

n = 10

r <= 3

Therefore, several cases must be made:

C (10, 0) = 10! / 0! * (10-0)! = 10! / (0! * 10!) = 1

C (10, 1) = 10! / 1! * (10-1)! = 10! / (1! * 9!) = 10

C (10, 2) = 10! / 2! * (10-2)! = 10! / (2! * 8!) = 45

C (10, 3) = 10! / 3! * (10-3)! = 10! / (2! * 7!) = 120

The sum of all these scenarios would give us the number of possible total scenarios:

1 + 10 + 45 + 120 = 176 possible total scenarios.

part c, also corresponds to a combination, and to be equal it must be divided by two since the coin is thrown 10 times, it would be 10/2 = 5, that is our r = 5

Knowing this, the combination formula is applied:

C (10, 5) = 10! / 5! * (10-5)! = 10! / (2! * 5!) = 252

252 possible scenarios to be the same amount of heads and tails.

[[ PLEASE ANSWER ASAP (: ]]
A parking space is in the shape of a parallelogram. The figure below is a model of the parking space. The measure of Angle B is 80°. What are the measures of the other 3 angles?

Answers

Angle A = 100 , Angle C = 100 , Angle D =80
Final answer:

In a parallelogram with one given angle of 80°, the opposite angle equals 80°, and the two adjacent angles are 100° each, resulting from the properties of parallelograms.

Explanation:

The subject of this question is Mathematics, specifically geometry involving angles in a parallelogram. Given that one angle (Angle B) is 80° in a parallelogram, we can determine the measures of the remaining angles using the properties of parallelograms. Adjacent angles in a parallelogram are supplementary, meaning they add up to 180°. Therefore, if Angle B is 80°, then Angle C (adjacent to B) is 180° - 80° = 100°. Since a parallelogram has two pairs of parallel sides, opposite angles are equal. Therefore, Angle D equals Angle B (80°), and Angle A equals Angle C (100°).

Each of the 50 students participating in a workshop is either an undergraduate or a graduate student. If P is the probability that a randomly selected participant will be a female graduate student, is P less than \small \frac{1}{2} ?

Answers

Answer:

no

Step-by-step explanation:

no

Other Questions
The ionization energy of atoms ________. Group of answer choices does not change going down within a group increases going down within a group decreases going down within a group none of the above decreases going across a period At the Henry's Law constant for carbon dioxide gas in water is . Calculate the mass in grams of gas that can be dissolved in of water at and a partial pressure of . Round your answer to significant digits. According to the _____ theory, when a physiological need, such as hunger, creates an aroused tension state, it drives the organism to reduce the need. Johnny has been in Cub Scouts for 4 years and is getting ready to move to Boy Scouts require discipline, good behavior, and follow any instructions. How likely is that he will be able to meet these demands? Find the quotient-54^2 + 24/ 9y + 6 According to Robert Mertons strain theory, _______ refers to when people challenge both the approved goals and the approved means for achieving them and advocate an alternative set of goals or means. what was the result of the Pullman Strike? Whats the next number in the sequence 72,81,90,99 Which federal agency regulates elections in the United States? A speech delivered to a gathering of religious leaders that compares the major tenets of Islam, Catholicism, and Judaism likely focuses on which of the following goals? 1. to persuade 2, to enable application 3. to deepen understanding 4. to impart knowledge You are riding a ferris wheel while sitting on a scale. A ferris wheel with radius 9.7 m and a period 32s. Find the scale reading for a 60kg person at the bottom of the ferris wheel and the top of the ferris wheel, assuming it moves at a constant rate. Which of the following is a requirement to vote in an election in the United States today? A. must own property B. must pass a literacy test C. must pay a poll tax D. must be registered to vote Name the lymphatic capillary found in an intestinal villus Lipstik, Inc. makes cosmetics. Lipstik intentionally mislabels its packaged products to conceal a defect. Trusting and relying on the mislabeling, Mikayla buys a Lipstik product and suffers an injury. Lipstik is most likely liable for The internal telephone numbers in the phone system on a campus consists of 4 digits, with the 1st not equal to 0. How many different numbers can be assigned in this system? A chlorine and bromine atom are adsorbed on a small patch of surface (see sketch at right). This patch is known to contain possible adsorption sites. The and bromine atoms have enough energy to move from site to site, so they could be on any two of them. Suppose the atom desorbs from the surface and drifts away. Calculate the change in entropy. Round your answer to significant digits, and be sure it has the correct unit symbol. Relationship between bronchioles alveoli and blood vessels The height of a rectangular prism is 20cm. It has a surface area of 2400 square centimeters. What are two possible sets of lengths and widths? Find one set of dimensions with l and w equal in length as well as a set dimensions that are not equal Economists were sharply divided over how to best fight the Great Recession. A vocal minority of economists favored the "Structural Solution," arguing that the economy needs to undergo some structural adjustments and that government should, therefore, A. rely on the invisible hand of the market to relocate resources, by letting weak firms die out quickly B. take serious actions to increase the total demand output for the country What is the ability to complete extended periods of physical activity?