It is to be noted that it is impossible to find the Maclaurin Expansion for F(x) = cotx.
<h3>What is
Maclaurin Expansion?</h3>
The Maclaurin Expansion is a Taylor series that has been expanded around the reference point zero and has the formula f(x)=f(0)+f′. (0) 1! x+f″ (0) 2! x2+⋯+f[n](0)n!
<h3>
What is the explanation for the above?</h3>
as indicated above, the Maclaurin infinite series expansion is given as:
F(x)=f(0)+f′. (0) 1! x+f″ (0) 2! x2+⋯+f[n](0)n!
If F(0) = Cot 0
F(0) = ∝ = 1/0
This is not definitive,
Hence, it is impossible to find the Maclaurin infinite series expansion for F(x) = cotx.
Learn more about Maclaurin Expansion at;
brainly.com/question/7846182
#SPJ1
Answer:
the maximum bending stress in the strap is 3.02 ksi
Explanation:
Given the data in the question;
steel strap thickness = 0.125 in
width = 2 in
circular arc radius = 600 in
we know that, standard value of modulus of elasticity of L2 steel is; E = 29 × 10³ ksi;
Now, using simple theory of bending
1/p = M/EI
solve for M
Mp = EI
M = EI / p ----- let this be equation 1
The maximum bending stress in the strap is;
σ = Mc / I -------let this be equation 2
substitute equation 1 into 2
σ = ( EI / p)c / I
σ = ( c/p )E
so we substitute in our values
σ = ( (0.125/2) / 600 )29 × 10³
σ = 0.00010416666 × 29 × 10³
σ = 3.02 ksi
Therefore, the maximum bending stress in the strap is 3.02 ksi
Answer:
Applying Kirchhoff's current law at inverting terminal
Explanation:
Detailed explanation is given in the attached document.
Answer:
ur answer friend
Explanation:
answer
<em>S</em><em>o</em><em>l</em><em>i</em><em>d</em><em>-</em><em>F</em><em>u</em><em>e</em><em>l</em><em> </em><em>R</em><em>o</em><em>c</em><em>k</em><em>e</em><em>t</em><em> </em><em>-</em><em> </em>a solid-propellant rocket or solid rocket is a rocket with a rocket engine that uses solid propellants. The earliest rockets were solid-fuel rockets powered by gunpowder; they were used in warfare by the Chinese, Indians, Mongols and Persians, as early as 13th century.
<em>L</em><em>i</em><em>q</em><em>u</em><em>i</em><em>d</em><em>-</em><em>F</em><em>u</em><em>e</em><em>l</em><em> </em><em>R</em><em>o</em><em>c</em><em>k</em><em>e</em><em>t</em><em> </em><em>-</em><em> </em>a liquid-propellant rocket or liquid rocket utilizes a rocket engine that use liqiud propellants. An inert gas stored in a tank at a high pressure is sometimes used instead of pumps in simpler small engines to force the propellants into the combustion chamber.
<em>I</em><em>o</em><em>n</em><em> </em><em>R</em><em>o</em><em>c</em><em>k</em><em>e</em><em>t</em><em> </em><em>-</em><em> </em>an ion thruster or ion drive is a form of electric propulsion used for spacecraft propulsion. It creates thrust by accelerating ions using electricity. The Deep Space 1 spacecraft, powered by an ion thruster, changed velocity by 4.3 km/s ( 9600 mph ) while consuming less than 74 kg ( 163 lb ) of xenon.
<em>P</em><em>l</em><em>a</em><em>s</em><em>m</em><em>a</em><em> </em><em>R</em><em>o</em><em>c</em><em>k</em><em>e</em><em>t</em><em> </em><em>-</em><em> </em>in this type of rocket, a combination of electric and magnetic fields are used to break down the atoms and molecules of a propellant gas into a collection of particles that have either a positive charge (ions) or a negative charge (electrons). In other words, the propellant gas becomes a plasma.
I think its helpful to you
Please mark as brainliest answer
Answer:
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class PhoneBook {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
Map<String, String> map = new HashMap<>();
String name, number, choice;
do {
System.out.print("Enter name: ");
name = in.next();
System.out.print("Enter number: ");
number = in.next();
map.put(name, number);
System.out.print("Do you want to try again(y or n): ");
choice = in.next();
} while (!choice.equalsIgnoreCase("n"));
System.out.print("Enter name to search for: ");
name = in.next();
if (map.containsKey(name)) {
System.out.println(map.get(name));
} else {
System.out.println(name + " is not in the phone book");
}
}
}