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
vaieri [72.5K]
3 years ago
15

Use a while loop to determine how many terms in the series 3k^2 are required for the sum to surpass 2000

Mathematics
2 answers:
Bumek [7]3 years ago
6 0
Using JAVA:
int sum = 0;       
int k = 1;       
while(sum  <= 2000) {           
sum += 3*k*k;           
 k++;       
 }               
System.out.println(k);

Output: 14

Which means it will take 14 terms for the series to surpass 2000


neonofarm [45]3 years ago
4 0
I am assuming k starts at 0. Python code (or pseudocode) would be this:
-------------------------------
S = 0
count_term = 0
k = 0
while S <= 2000:     S = S + 3*k**2
    count_term = count_term + 1     k = k + 1

print(count_term)
-------------------------------

It will print 14

If k should start at other number then just replace number at third line and execute it.
You might be interested in
Does someone want to help me solve this problem
Hoochie [10]

Answer:

(cx)2-(dy) 2

Step-by-step explanation:

Formula a2-b2= (a+b) (a-b)

By given formula

(cx)2 - (dy) 2 = (cx+dy) (cx-dy)

3 0
2 years ago
Write an expression with a negative exponent that has a value between 0 and 1:2
Naddika [18.5K]
Edit to reflect comments:

3^-1=1/3
4^-1=1/4

Flip the fraction over basically i.e. 4/1---->1/4
7 0
3 years ago
Jan's scores on five quizzes were 2, 8, 8, 9, and 10. Is the mean or median the best measure of center to summarize Jan's scores
Rashid [163]
The mean is the best measure to summarise the scores.
7 0
2 years ago
Oceanside Bike Rental Shop charges a 13 dollar fixed fee plus 9 dollars an
tatyana61 [14]
58-13=45 45/9=5 Carlos rented the bike for 5 hours
4 0
3 years ago
Read 2 more answers
Find the area of this kite.<br> 3 m<br> 5 m<br> 6 m<br> 5 m
miv72 [106K]
The area of the kite in the picture is 5m
3 0
2 years ago
Read 2 more answers
Other questions:
  • The proper measuring distance in the U.S. system
    5·1 answer
  • Draw a mapping diagram (0,-3) (4,12) (6,13) (7,0)​
    10·1 answer
  • Which of the following is a root of the polynomial function below
    13·1 answer
  • Which is another way to write the expression t • (14 - 5)
    7·2 answers
  • 4. Four friends went on a trip to Mexico. They rented a car for eight days which cost
    7·1 answer
  • Factor completely 49q^4 - 4​
    15·2 answers
  • an acute angle measures (6x-45)°. write an inequality to describe the range of all possible values of x.
    8·2 answers
  • You spent z dollars today. Today, you spent 5.5 times as many dollars as you spent yesterday. Which expression correctly shows h
    8·1 answer
  • URGENT!!!
    5·1 answer
  • What is (f + g)(x)?<br> f(x) = -3x²<br> g(x) = 4x + 3
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!