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
Deshi has 427 marbles and Elaheh has 394 marbles Deshi wants to give 125 marbles to his little brother how many total marbles wi
hjlf

Answer: Deshi will have 302 marbles  and Elaheh will have 519.

Step-by-step explanation:

Deshi's Marbles will subtract 125.

427 - 125 = 302.

Elaheh's Marbles will add 125.

394 + 125= 519.

3 0
2 years ago
Steve is participating in a bike a thon for charity. He will bike 144 miles per day for 5 days. How many miles will steve bike i
Serggg [28]
144x5=720 miles in five days
4 0
3 years ago
Read 2 more answers
How do i show my daughter how to do 17 × 9
satela [25.4K]
17*9=17*10-17=170-17=153
3 0
3 years ago
Can someone help me out in these 3 questions??
alisha [4.7K]

Answer:

I'm not completely sure about the first one, but #8 is 0.0419, and #9 is 30500.

5 0
3 years ago
The product of two opposite numbers is -289. What are those numbers?​
Hunter-Best [27]

Answer:

17 × -17?

Step-by-step explanation:

i dont think it needs explanation?

7 0
2 years ago
Other questions:
  • If x varies directly with y and x=3.5 when y=14 find x when y=18
    7·1 answer
  • What is the solution to the following system of equations? y = −x^2 − 5x − 4 y = −x^2 + 9x − 18
    5·1 answer
  • What persent of the model is a circle
    7·2 answers
  • If g = x - 9, and if x = 15, what is g?<br>A)3<br>B)6<br>C)7<br>D)23​
    6·2 answers
  • Provide an appropriate response. the regression line for the given data is = 1.488x + 60.46. determine the residual of a data po
    10·1 answer
  • Y is directly proportional to x, and y=56 when x=7. find the value of y when x=4.
    9·1 answer
  • Incorrect, 4.3.37
    6·2 answers
  • Classify the pair of angles as adjacent, vertical, supplementary, complementary, or neither.
    15·1 answer
  • Classify the triangle. (Explain each type if you can!)
    6·1 answer
  • PLSSSS HELPPP 18 POINTS MATHHH PLSSS HELPPP
    10·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!