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
Help me please i need your helpp
Inga [223]

Answer:

D) -2

Step-by-step explanation:

to identify the slope of a line written in slope-intercept form, it would be

the coefficient of the 'x' term

5 0
2 years ago
Suppose a seventh grader birthday is today,and she is 12 years old.how old was she 3 1/2 years ago?draw a number line
sleet_krkn [62]
She was 8.5 or 8 1/2
3 0
3 years ago
Read 2 more answers
Which expression is equivalent to the following: *<br> 20x+9y
anzhelika [568]

Answer:

B. 5(4x+2y)-y

Step-by-step explanation:

Bring the 5 over and multiply

5×4 = 20 + x

=20x (thats the beginning of the expression)

5×2 = 10

10y - y = 9 because the - y is basically telling you to get rid of one of the y values so 10 - 1 = 9y

7 0
2 years ago
A crate of pears that usually costs $50 is on sale for 10% off. What is the sale price for the crate of pears?​
lorasvet [3.4K]
Answer:5
Explaining:
10% of 50
= 10%=10/100 = 0.1
= 0.1 (x) times 50
= 5
3 0
2 years ago
Please explain step by step worth 20 points
ankoles [38]
Multipy $275 by the 4.5%
4.5%=.045 (just move the decimal 2 places left)
275*.045= 12.375  Susan gets $12.375 a year (don't round yet)
Multiply $12.375 by 5years          12.375*5= 61.875 (now round)
$61.90=B
I hope this helps! :)

5 0
3 years ago
Other questions:
  • The solution to 2 times 27 will be what kind of number odd even or prime or perfect square
    7·1 answer
  • HELP ASAP PLEASE!!!!
    14·2 answers
  • A cubic meter (m³) is ________. a cubic centimeter (cm³).
    14·2 answers
  • Why can't history be optional because I don’t need anything to do with it if i want to be a vet
    14·1 answer
  • 3. Use substitution to solve the system of
    5·1 answer
  • WORKOUT
    10·1 answer
  • The axis of symmetry for a function in the form f(x)=x2+4x-5 is x=-2
    7·1 answer
  • Plz help me solve this.<br><br> <img src="https://tex.z-dn.net/?f=x%5E%7B2%7D%20%3D%202x%20-%205" id="TexFormula1" title="x^{2}
    14·1 answer
  • Find the slope of the line
    7·1 answer
  • Which of the following numbers is the arithmetic mean for the other<br> numbers? <br> 26,28,29,30,37
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!