Ask your own question, for FREE!
Mathematics 8 Online
OpenStudy (anonymous):

Given that light travels approximately 186282 miles per second ( in a vacum ). how far is a parsec? show the intermediate steps of your computation.

OpenStudy (hunus):

Light's speed is \[c = 186282\frac{miles}{second}\] The distance d between the sun and the earth is \[d = 93000000 miles=9.3x10^7miles\] Speed is given by the equation s = distance/time We need time so time = distance/speed Think you can solve it from here?

OpenStudy (hunus):

Also when you solve the equation for time it will be in seconds so you will need to convert it to minutes

OpenStudy (anonymous):

what is the first Fibonacci number greater than 10000? Fibonacci numbers generated by adding the last two to get the next one. we will start with 1and 1.

OpenStudy (anonymous):

please show me the work..

OpenStudy (hunus):

I can write a program really quick to find out but I'm not sure how to do that manually

OpenStudy (anonymous):

i need your help

OpenStudy (hunus):

With what?

OpenStudy (anonymous):

by solving this problem :)

OpenStudy (hunus):

Okay var f_1 = 1; var f_2 = 1; var i = 2; var f_current = 0; var f_numbers = [f_1, f_2]; while(f_current < 10000){ f_current = f_numbers[i-2] + f_numbers[i-1]; f_numbers.push(f_current); i += 1; } for(i=0; i<f_numbers.length; i++){ if(f_numbers[i] >= 10000){ console.log(f_numbers[i]); }else{ continue; } } Well this is the program I wrote and it gives the number 10946

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!