Answer: The electric field decreases because of the insertion of the Teflon.
Explanation:
If the charge on the capacitor is held fixed, the electric field as a consequence of this charge distribution (directed from the positive charged plate to the negative charged one remains unchanged.
However, as the Teflon is a dielectric material, even though doesn't allow the free movement of the electrons as an answer to an applied electric field, it allows that the electrons be displaced from the equilibrium position, leaving a local negative-charged zone close to the posiitive plate of the capacitor, and an equal but opposite charged layer close to the negative plate.
In this way, a internal electric field is created, that opposes to the external one due to the capacitor, which overall effect is diminishing the total electric field, reducing the voltage between the plates, and increasing the capacitance proportionally to the dielectric constant of the Teflon.
Answer:
William Shockley, Walter Houser Brattain and John Bardeen.
Explanation:
It was built in 1947 and they won the novel peace prize in 1956
Answer:
(a) T = W/2(1-tanθ) (b) 39.81°
Explanation:
(a) The equation for tension (T) can be derived by considering the summation of moment in the clockwise direction. Thus:
Summation of moment in clockwise direction is equivalent to zero. Therefore,
T*l*(sinθ) + W*(l/2)*cosθ - T*l*cosθ = 0
T*l*(cosθ - sinθ) = W*(l/2)*cosθ
T = W*cosθ/2(cosθ - sinθ)
Dividing both the numerator and denominator by cosθ, we have:
T = [W*cosθ/cosθ]/2[(cosθ - sinθ)/cosθ] = W/2(1-tanθ)
(b) If T = 3W, then:
3W = W/2(1-tanθ),
Further simplification and rearrangement lead to:
1 - tanθ = 1/6
tanθ = 1 - (1/6) = 5/6
θ = tan^(-1) 5/6 = 39.81°
Answer:
#include <iostream>
using namespace std;
void PrintPopcornTime(int bagOunces) {
if(bagOunces < 3){
cout << "Too small";
cout << endl;
}
else if(bagOunces > 10){
cout << "Too large";
cout << endl;
}
else{
cout << (6 * bagOunces) << " seconds" << endl;
}
}
int main() {
PrintPopcornTime(7);
return 0;
}
Explanation:
Using C++ to write the program. In line 1 we define the header "#include <iostream>" that defines the standard input/output stream objects. In line 2 "using namespace std" gives me the ability to use classes or functions, From lines 5 to 17 we define the function "PrintPopcornTime(), with int parameter bagOunces" Line 19 we can then call the function using 7 as the argument "PrintPopcornTime(7);" to get the expected output.
Answer:
Explanation:
The pictures below shows the whole explanation for the problem