Answer:
Vab = 80V
Explanation:
The only current flowing in the circuit is supplied by the 100 V source. Its only load is the 40+60 ohm series circuit attached, so the current in that loop is (100V)/(40+60Ω) = 1A. That means V1 = (1A)(60Ω) = 60V.
Vab will be the sum of voltages around the right-side "loop" between terminals 'a' and 'b'. It is (working clockwise from terminal 'b') ...
Vab = -10V +60V +(0A×10Ω) +30V
Vab = 80V
The maintenance is in charge of controlling that all the machines of a company are constantly running in order to avoid damages that cause loss of money when the machines fail.
The maintenance based on vibration monitoring allows to predict failures in some rotating machines such as:
1. worn bearings
2.alignment
3.balance
4. affected gears
5. bent shafts
6. rocks
7.gags
8. eccentricity
9. failures of electrical origin
The number of hectares of each crop he should plant are; 250 hectares of Corn, 500 hectares of Wheat and 450 hectares of soybeans
<h3>How to solve algebra word problem?</h3>
He grows corn, wheat and soya beans on the farm of 1200 hectares. Thus;
C + W + S = 12 ----(1)
It costs $45 per hectare to grow corn, $60 to grow wheat, and $50 to grow soybeans. Thus;
45C + 60W + 50S = 63750 -----(2)
He will grow twice as many hectares of wheat as corn. Thus;
W = 2C ------(3)
Put 2C for W in eq 1 and eq 2 to get;
C + 2C + S = 1200
3C + S = 1200 -----(4)
45C + 60(2C) + 50S = 63750
45C + 120C + 50S = 63750
165C + 50S = 63750 ------(5)
Solving eq 4 and 5 simultaneosly gives;
C = 250 and W = 500
Thus; S = 1200 - 3(250)
S = 450
Read more about algebra word problems at; brainly.com/question/13818690
Explanation:
750 microvolt is your answer
please mark as brilliant
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)