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
True or false? ( help me please and thank you)
Dmitriy789 [7]

Answer:

False

Step-by-step explanation:

Well it's True in a way, but they didn't simplify all the way. Correct simplification would be 1/3

4 0
3 years ago
Read 2 more answers
What is csc ( Reduce fractional answers to lowest terms.
harina [27]

Answer:

cscA = \frac{5}{4}

Step-by-step explanation:

Using the identity

csc x = \frac{1}{sinx} , then

sinA = \frac{opposite}{hypotenuse} = \frac{BC}{AB} = \frac{8}{10} = \frac{4}{5} , thus

cscA = \frac{1}{\frac{4}{5} } = \frac{5}{4}

4 0
3 years ago
One serving of a certain brand of microwave popcorn provides 150 calories, 90 of which are from fat. One serving of a certain br
alexandr1967 [171]

Answer: 50 calories

Step-by-step explanation:

One serving of a certain brand of microwave popcorn provides 150 calories, 90 of which are from fat. The fraction that comes from fat:

= 90/150 = 3/5

One serving of a certain brand of low-sodium pretzels provides 120 calories, 12 of which are from fat. The fraction that comes from fat here:

= 12/120 = 1/10

The fat that are provided by a 100 calorie serving of the microwave popcorn would be:

= 3/5 × 100

= 60

The fat that are provided by a 100-calorie serving of the pretzels would be:

= 1/10 × 100 = 10

The difference from fat that are provided by a 100 calorie serving of the microwave popcorn than are provided by a 100-calorie serving of the pretzels would be:

= 60 - 10

= 50 calories

6 0
3 years ago
How would you factor 5x²+17x+6=0
labwork [276]
5x^2+17x+6=0
(5x+2)(x+3)=0
5x+2=0 x+3=0
x=-2/5 x=-3
Cheers,Irys
6 0
3 years ago
Help help pls help quick pls help help
uysha [10]
Answer: I’m pretty sure its D) 1 1/9
5 0
3 years ago
Read 2 more answers
Other questions:
  • Find the missing side
    14·1 answer
  • Why will the percent of change always be represented by a positive number
    13·1 answer
  • Raul, who is 1.53 m tall, wishes to find the height of a tree. He walks 21.11 m from the base of the tree along the shadow of th
    8·2 answers
  • The ratio of girls to boys in the ninth grade is 5:4. if there are 144 boys in the ninth grade, how many girls are there?
    13·2 answers
  • For a field trip 7 students rode in cars and the rest filled four buses.
    12·1 answer
  • Which of the following is an equivalent simplified expression for 2(4x + 7) – 3(2x – 4) ?
    11·1 answer
  • Normal probability Density Function Use a graphing utility to graph the model probability density function with ð = 1 and µ = 2,
    5·1 answer
  • Please Help Me!!!! qwq
    11·1 answer
  • There are 40 students in a summer cohort. Of those students, 20 are taking an accounting course, and 25 are taking a Spanish cou
    7·1 answer
  • A water tank initially contained 111 liters of water. It is then filled with more water, at
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!