Answer:
Cyclical
Explanation:
I looked at the next question on edgenuity and it said it in the question.
Answer:
type 2, k = 4
Explanation:
(a) The transfer function of the controller for a satellite attitude control is

The transfer function of unity feedback structure is
To determine system type for reference tracking, identify the number of poles at origin in the open-loop transfer function.
For unity feedback system, the open-bop transfer function


Determine the poles in G(s)4(s).
s = 0,0,-5
Type of he system is decided by the number of poles at origin in the open loop transfer function.
Since, there are two poles at origin, the type of the system will be 2.
Therefore, the system type is
Type 2
check the attached file for the concluding part of the solution
Answer:

Explanation:
From the question we are told that:
Diameter 1 
Diameter 2 
Generally the equation for Radius is mathematically given by
At Diameter 1

At Diameter 2

Generally the equation for continuity is mathematically given by

Therefore


When the applied force is larger than the maximum force of static friction the object will move. ... The magnitude of the kinetic friction is: fk=μkN. Remember that static friction is present when the object is not moving and kinetic friction while the object is moving.
Answer:
clc
clear
x = input('type value of angle in degrees:\n');
x = x*pi/180; %convverting fron degree to radian
sin_x = x; %as first term of taylor series is x
E = 1; %just giving a value of error greater than desired error
n = 0;
while E > 0.000001
previous = sin_x;
n = n+1;
sin_x = sin_x + ((-1)^n)*(x^(2*n+1))/factorial(2*n+1);
E = abs(sin_x - previous); %calculating error
end
a = sprintf('sin(x) = %1.6f',sin_x);
disp(a)
Explanation: