Answer:

Step-by-step explanation:
Given:
To find:
- Summation notation of the given series
Summation Notation:

Where n is the number of terms and
is general term.
First, determine what kind of series it is, there are two main series that everyone should know:
A series that has common difference.
A series that has common ratio.
If you notice and keep subtracting the next term with previous term:
Two common difference, we can in fact say that the series is arithmetic one. Since we know the type of series, we have to find the number of terms.
Now that brings us to arithmetic sequence, we know that first term is 5 and last term is 251, we’ll be finding both general term and number of term using arithmetic sequence:
<u>Arithmetic Sequence</u>

Where
is the nth term,
is the first term and
is the common difference:
So for our general term:

And for number of terms, substitute
= 251 and solve for n:

Now we can convert the series to summation notation as given the formula above, substitute as we get:

600 ft. This is because you travel 10 feet per second and there are 60 seconds in a minute. 10 x 60 =600
Answer:233
Step-by-step explanation:cause i said so
<em>Answer:</em>
<h3><em>i believe it is 65 if it isnt then idk</em></h3>
<em>Step-by-step explanation:</em>
Answer:
public class MovieRental
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.print("Enter the number of movie rentals: ");
int movieRentals = in.nextInt();
System.out.print("Enter the number of members referred to the video club: ");
int memberReferral = in.nextInt();
in.close();
double discountVal = Math.min(movieRentals + memberReferral, 75);
System.out.println("The discount is equal to: " + discountVal);
}
}