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
What kind of background would fit?
Dafna11 [192]

Answer:

Is this even math

Step-by-step explanation:

No it isn’t

Just ask a forum or something and not an education site lol

6 0
2 years ago
PLEASE HELP ME PLSSSS I WILL MARK YOUR BRAINLIEST Kalie puts 6 stickers on her desk. Each sticker is 1/2 centimeters wide by 3/5
Damm [24]

Answer:

Total area: 9/5 square cm, or in decimal form 1.8 square cm

Step-by-step explanation:

Notice that each sticker is 1/2 cm by 3/5 cm, therefore they area is 1/2 times 3/5 = 3/10  square cm.

since she uses 6 of them, we need to multiply the area of each by 6 in order to get the total area:

6 times 3/10 = 18/10 square cm = 9/5 square cm or in decimal form 1.8 square cm

8 0
3 years ago
A ramp with a constant incline is made to connect a driveway to a front door. At a point 4 feet from the driveway, the height of
harkovskaia [24]
Let A(4,12) and B(6,18)

RATE OF CHANGE = m = (y₂ - y₁) / (x₂ - x₁) = (18-12)/ (6-4)

m= 6/2 or m = 3
4 0
3 years ago
Read 2 more answers
What does y=1/2x what number is the x
poizon [28]

Answer:

Step-by-step explanation:

7 0
3 years ago
Pls help!
olga nikolaevna [1]

Answer:

$11.25

Step-by-step explanation:

1.25 × 9 = 11.25

6 0
2 years ago
Read 2 more answers
Other questions:
  • 4m + 9 + 5m - 12 = 42
    8·2 answers
  • HELP asap plz<br><br> Solve 2y^2 – 3y = 2
    5·1 answer
  • 5x-5y/4=4x-4/2 Find the equation of the line which passes through the point (10,7) and is perpendicular to the given line. Expre
    7·1 answer
  • Select all that apply.
    7·2 answers
  • <img src="https://tex.z-dn.net/?f=%20%5Cfrac%7B1%7D%7B2%7D%20%20%5Cdiv%20%20%5Cfrac%7B1%7D%7B4%7D%20" id="TexFormula1" title=" \
    5·2 answers
  • Revenue for a new product sold by your company is given by the function R(x) = -0.05x2 + 60x. Use the function to Stculate the
    10·1 answer
  • What is the lateral area of the prism ?
    12·1 answer
  • Write a quadratic function given the roots (3,0) and (-1,0) and the point (-3,3)?
    7·1 answer
  • raphael went to the store and bought 2.88 pounds of chicken for $7.00 what was the cost per pound of chicken round to the neares
    14·1 answer
  • This is geometry. idk how to do it
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!