1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Scorpion4ik [409]
2 years ago
8

PLEASE HELP THIS IS DUE TONIGHT AND I AM STUCK ON THIS QUESTION

Mathematics
1 answer:
WARRIOR [948]2 years ago
7 0
Tan θ=opposite/adjacent
= 4/3
=1.333
I’m not sure if that’s how it’s done but…
You might be interested in
Which of the following points are on the line given by the equation y equals 2x?
Rina8888 [55]

Answer:

(5,10)

(3,6)

Step-by-step explanation:

The equation y=2x means that 2 multiplied by the first value would equal the second value, so this means that the second value is twice as much as the first value.  This is not true for the first option because 8 is not twice of 16, and this is the same for (4,6), (4,2), and (1,3).  Therefore (5,10) and (3,6) work.

5 0
3 years ago
A battery was charged. When the changing began, it was 23 percent full. After 30 minutes of charging, the battery was 89 percent
Aleks04 [339]
Before it charged, the battery was at 23%. In half and hour, it went to 89%. So, it rose 89-23, or 66% in half an hour. Now that we know how much it rose and that there are 30 mins in half an hour, we have to divide 66% by 30 to figure out the answer.

66/30 is 2.2. 

So, the battery rose at 2.2% per minute. 

Hope this helps!
4 0
4 years ago
Help me for this please
Tresset [83]
The correct answer is 84in.
6 0
3 years ago
Read 2 more answers
The owner of a local golf course wants to determine the average age of the golfers that play on the course in relation to the av
irakobra [83]

Answer:

a. We are 99% confident that the average age of all golfers that play on the golf course is greater than 21.29

Step-by-step explanation:

x% confidence interval:

A confidence interval is built from a sample, has bounds a and b, and has a confidence level of x%. It means that we are x% confident that the population mean is between a and b.

In this question:

99% confidence interval for the average age of golfers that play on the area is (35.683, 43.763), which means that we are 99% confident that the mean age of all golfers who play in the area is a value in this interval, and the best conclusion is given by option A, as the lower bound of the interval is greater than 21.

8 0
3 years ago
The fundamental source of the inefficiency is not the fact that recursive calls are being made, but that values are being recomp
Fudgin [204]

Step-by-step explanation:

<em>(you can download the attached PDF for a better view)</em>

The Fibonacci sequence is a well-known mathematical sequence in which each term is the sum of the two previous terms.

More specifically, if fib(n) is the nth term of the sequence, then the sequence can be defined as follows:

fib(0) = 0

fib(1) = 1

fib(n) = fib(n-1) + fib(n-2) n>1

1. Because the Fibonacci sequence is defined recursively, it is natural to write a recursive method to determine the nth

number in the sequence. File Fib.java contains the skeleton for a class containing a method to compute Fibonacci

numbers. Save this file to your directory. Following the specification above, fill in the code for method fib1 so that it

recursively computes and returns the nth number in the sequence.

2. File TestFib.java contains a simple driver that asks the user for an integer and uses the fib1 method to compute that

element in the Fibonacci sequence. Save this file to your directory and use it to test your fib1 method. First try small

integers, then larger ones. You'll notice that the number doesn't have to get very big before the calculation takes a very

long time. The problem is that the fib1 method is making lots and lots of recursive calls. To see this, add a print

statement at the beginning of your fib1 method that indicates what call is being computed, e.g., "In fib1(3)" if the

parameter is 3. Now run TestFib again and enter 5—you should get a number of messages from your print statement.

Examine these messages and figure out the sequence of calls that generated them. (This is easiest if you first draw the

call tree on paper.) . Since fib(5) is fib(4) + fib(3),you should not be surprised to find calls to fib(4) and fib(3) in the

printout. But why are there two calls to fib(3)? Because both fib(4) and fib(5) need fib(3), so they both compute it—very

inefficient. Run the program again with a slightly larger number and again note the repetition in the calls.

3. The fundamental source of the inefficiency is not the fact that recursive calls are being made, but that values are being

recomputed. One way around this is to compute the values from the beginning of the sequence instead of from the end,

saving them in an array as you go. Although this could be done recursively, it is more natural to do it iteratively. Proceed

as follows:

a. Add a method fib2 to your Fib class. Like fib1, fib2 should be static and should take an integer and return an integer.

b. Inside fib2, create an array of integers the size of the value passed in.

c. Initialize the first two elements of the array to 0 and 1, corresponding to the first two elements of the Fibonacci

sequence. Then loop through the integers up to the value passed in, computing each element of the array as the sum

of the two previous elements. When the array is full, its last element is the element requested. Return this value.

d. Modify your TestFib class so that it calls fib2 (first) and prints the result, then calls fib1 and prints that result. You

should get the same answers, but very different computation times.

// ******************************************************************

// Fib.java

//

// A utility class that provide methods to compute elements of the

// Fibonacci sequence.

// ******************************************************************

public class Fib

{

//--------------------------------------------------------------

// Recursively computes fib(n)

//--------------------------------------------------------------

public static int fib1(int n)

{

//Fill in code -- this should look very much like the

//mathematical specification

}

// ******************************************************************

// TestFib.java

//

// A simple driver that uses the Fib class to compute the

// nth element of the Fibonacci sequence.

// ******************************************************************

import java.util.Scanner;

public class TestFib

{

public static void main(String[] args)

{

int n, fib;

Scanner scan = new Scanner(System.in);

System.out.print("Enter an integer: ");

n = scan.nextInt();

fib = Fib.fib1(n);

System.out.println("Fib(" + n + ") is " + fib);

}

}

Download pdf
8 0
3 years ago
Read 2 more answers
Other questions:
  • What is 4573 - 3892?
    10·2 answers
  • Solve for x.<br> x/6 = 2<br> x=___________
    12·2 answers
  • Tickets to a school dance cost $4 and the projected attendance is 300 people. For every $0.10 increase in ticket price, the danc
    11·1 answer
  • If the area of the triangle is 10cm?, find the height.<br> 5cm
    5·1 answer
  • 151,375 boxes of fruit. how many thousands were shipped ?
    13·2 answers
  • Which box plot represents a symmetrically distributed data set?
    11·1 answer
  • Find the volume. Help out please
    14·1 answer
  • What do each of these measure?
    13·2 answers
  • At the beginning of the year, Evelyn had $30 in savings and saved an additional $12 each week thereafter. Cooper started the yea
    7·1 answer
  • The distance between the school and the airport on a map is 7.25 cm. The scale of the map is 1 cm : 12 m. What is the actual dis
    12·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!