Answer:
B-as deadly storms that claim lives in th great pines
Explanation:
I hope it helped if it did pls make me brainliest
Answer:
Codes for each of the problems are explained below
Explanation:
PROBLEM 1 IN C++:
#include<iostream>
using namespace std;
//fib function that calculate nth integer of the fibonacci sequence.
void fib(int n){
// l and r inital fibonacci values for n=1 and n=2;
int l=1,r=1,c;
//if n==1 or n==2 then print 1.
if(n==1 || n==2){
cout << 1;
return;
}
//for loop runs n-2 times and calculates nth integer of fibonacci sequence.
for(int i=0;i<n-2;i++){
c=l+r;
l=r;
r=c;
cout << "(" << i << "," << c << ") ";
}
//prints nth integer of the fibonacci sequence stored in c.
cout << "\n" << c;
}
int main(){
int n; //declared variable n
cin >> n; //inputs n to find nth integer of the fibonacci sequence.
fib(n);//calls function fib to calculate and print fibonacci number.
}
PROBLEM 2 IN PYTHON:
def fib(n):
print("fib({})".format(n), end=' ')
if n <= 1:
return n
else:
return fib(n - 1) + fib(n - 2)
if __name__ == '__main__':
n = int(input())
result = fib(n)
print()
print(result)
Ummm did you try to add or subtract and multiply or divide that can get your answer
Answer:
Vc2= V(l+e) ^2/4
Vg2= V(l-e^2)/4
Explanation:
Conservation momentum, when ball A strikes Ball B
Where,
M= Mass
V= Velocity
Ma(VA)1+ Mg(Vg)2= Ma(Va)2+ Ma(Vg)2
MV + 0= MVg2
Coefficient of restitution =
e= (Vg)2- (Va)2/(Va)1- (Vg)1
e= (Vg)2- (Va)2/ V-0
Solving equation 1 and 2 yield
(Va)2= V(l-e) /2
(Vg)2= V(l+e)/2
Conservative momentum when ball b strikes c
Mg(Vg)2+Mc(Vc)1 = Mg(Vg)3+Mc(Vc)2
=> M[V(l+e) /2] + 0 = M(Vg)3 + M(Vc) 2
Coefficient of Restitution,
e= (Vc)2 - (Vg)2/(Vg)2- (Vc)1
=> e= (Vc)2 - (Vg)2/V(l+e) /2
Solving equation 3 and 4,
Vc2= V(l+e) ^2/4
Vg2= V(l-e^2)/4