There is, for sure, effect of gravity on fire. We know for a fact that fires on Earth are "pointy" while those in zero-gravity are "round". This is because fire is simply glowing gas. Gas is matter and matter has weight. For a body to have weight, gravity must influence it in some way.
16 Thanks
2 Answers
#include<stdio.h>
#include<conio.h>
#include<string.h>
int main() {
int i, nextTerm;
int t1 = 2, t2 = 2;
nextTerm = t1+t2;
printf("%d, %d, ", t1, t2);
for (i = 3; i <= 10; ++i) {
printf("%d, ", nextTerm);
t1 = t2;
t2 = nextTerm;
nextTerm = t1 + t2;
}
return 0;
}
2 Thanks
2 Answers
In the air, there's nothing holding the body of the helicopter still - so the rotor blades spin one direction, but the torque applied to spin the rotors tries to spin the body of the helicopter in the opposite direction. The little rotor on the tail helps keep the body of the helicopter pointed in the same direction.
4 Thanks
2 Answers
13 Claps
2 Comments
1 Clap
0 Comments
3 Claps
0 Comments