Consider the set of integer numbers from 0 to 9, that is {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}. Bob wishes to use these numbers to create a 7-digit password to secure his new laptop. Note that each number can appear in any position (for example, 0 can be the first number in the password). (a) Find the number of 7-digit passwords that are possible. (b) Find the number of 7-digit passwords with distinct digits. (c) Find the number of 7-digit passwords that contain exactly three 4s (that is, inside the password the number 4 appears exactly three times). (d) Find the number of 7-digit passwords that do not contain any 1 (that is, inside the password the number 1 never appears). (e) Find the number of 7-digit passwords that contain at least one 6 (that is, inside the password the number 6 appears at least once). (f) Find the number of 7-digit passwords that contain exactly two 6s and one 5 (that is, inside the password the number 6 appears exactly twice and the number 5 appears exactly once). (g) Find the number of 7-digit passwords that contain exactly two 4s and three 2s (that is, inside the password the number 4 appears exactly twice and the number 2 appears exactly three times).
In: Electrical Engineering
Where is an autotransformer employed in a power system? Why?
In: Electrical Engineering
A double acting cylinder is to travel out when an
electrical pushbutton is actuated and remains in the forward end
position even when the button is released. A second button will
return the cylinder to its retracted position. (Use Direct
Mode)
electro pneumatic
draw daigram and explain functionality
In: Electrical Engineering
Precisely control of temperature in many industries is critical to ensure the quality of the product. Discuss how you will use the instrumentation amplifier using transducer bridge to measure the temperature. Use block diagram to illustrate your concept.
In: Electrical Engineering
Question 5
a) In your own understanding draw a static PMOS and NMOS structure
transistors and explain how each operates as switch , illustrate
your explanation with sketches.
b) Design a two way NOR Simple static CMOS Circuits , Explain the
circuit topology and its operation.
c) At your level in the field of Electronics and electrical
engineering ,draw the various Field effect transistor (FET)
possible configurations, In your own word and understanding briefly
analyze each configuration.
please answer all.thank you.
In: Electrical Engineering
Using variables ENGR, POET, and RHYME, write a logic expression that is 1 for poets who don't know how to rhyme and digital designers who like to come up with ryhming signal names.
In: Electrical Engineering
) Solve the linear difference equation: ?(? + 2) − 4?(? + 1) + 3?(?) = 2 ??(?)
Given the initial conditions: ?(0) = 1 , ?(1) = 2
In: Electrical Engineering
A three-phase 50Hz, 500MVA 15kV generator has an inertia
constant of 2pu/s.
a) For a given power system the initial load angle is δ0 and the
change in
momentum is M. Following a small disturbance the load angle
increases
to δ1. If the accelerating power associated with disturbance is Pa
deduce
an equation that expresses δ1 in terms of M, Pa δ0 and time,
t.
b) Calculate the
i. Synchronous speed
ii. Change in momentum
c) Initially the mechanical and electrical power delivered equal 1
pu and the
load angle is 10⁰. Calculate the
i. Maximum electrical power
ii. Accelerating power
d) A fault occurs which reduces the electrical power to zero.
Calculate the
i. accelerating power
ii. power load angle after 0.05s
In: Electrical Engineering
Exhibit commitment to the social, cultural, global, environmental and ethical responsibilities of the professional engineer, and the need for sustainable development; what do you believe are the social, cultural, global and ethical responsibilities of a professional engineer are for sustainability? Can you refer to Engineers Australia competencies to answer this? What current practices are you including in your work and what are your future considerations?
In: Electrical Engineering
Followings are the specifications of a laser displacement
sensor:
(a) Measurement range: +10 mm
(b) Measurement centre point: 50 mm
(c) Resolution: 1.5 μ m
(d) Linearity: +0.05 % FS
(e) Response time: 60 μs
(f) Linear output: 4-20 mA
Answer the following questions based on Specs given above.
(i) Draw input output graph for the sensor and properly label
it.
(ii) Evaluate the sensitivity of the sensor in mA/mm.
(iii) An object is at a distance of 57 mm from the sensor.
Determine the output
of the sensor in mA?
(iv) What is the error in the output of the sensor for the case
above [part(iii)]?
In: Electrical Engineering
How to design the MHO Relay? Need Guidance by using code/modelled or anything.
In: Electrical Engineering
Write a program (MATLAB) which generates exponential random variables, and use it to test the Central Limit Theorem as follows. For various values of n (say, 5, 10, 20, 50, 100, 1000), generate samples of the random variable Mn = 1/n \tiny \sum Xi where Xi are iid exponential random variables. A very simple method for generating exponential random variables is given on page 196 of the textbook (read that section). Plot the discretized CDF for Mn (an approximation of the CDF using discrete bins) for each n superimposed on the theoretical Gaussian CDF according to the Central Limit Theorem (or plot them next to each other). Calculate the sample mean and variance according to the material in the book and compare these to the theoretical values. Comment briefly on your results. Show all graphs and calculations. Include a copy of your code. Remember, you will need to generate a large number of samples of Mn for each n in order to get decent histograms. I suggest at least 100+ samples. 100 samples of M1000 require 100,000 exponential samples. You may choose any mean and variance you want for your exponential random numbers, but keep these fixed for all samples so that the results are comparable. Using the program written for the previous problem, repeat the whole experiment, but now choose a random mean and variance for each exponential sample. Thus, the Mn now will not be sums of identically distributed random variables. Show your results and comment. For this case, make sure that the distributions you use to choose your mean and variance at each sample are fixed throughout. Write the code in MATLAB.
In: Electrical Engineering
Design a microcomputer system using a uP 8086 10 Mhz. This system must have a Coprocessor 8087, a parallel connector, a serial connector, ADC and DAC connector for data conversion, a 16 byte seven segment display, a 64-key matrix keyboard, a USB connector thru a DMA for high speed data transfer. A special connector to connect a printer. The system must have an interrupt controller to handle all the I/O interface. The main memory size will be 1 Mbyte.
Show all the diagrams needed to construct your design including all the I/O interface and devices connected, show a memory map and the type of memory you will need for you design including the configuration and decoding system. You must include the programming needed for set up the complete system. Use pseudo code for each driver and program each of the interface needed.
In: Electrical Engineering
Driver's drowsiness detection using Deep Neural Networks. How it is going to impact our society ? contribution towards society ?
In: Electrical Engineering
Need to use math lab for the Isim function for calculating the output and state response.
Of the Transfer Function s + 2 / s^2 + 2 s + 2. I been using the following code and it doesn’t work
sys = tf([1 2],[1 2 2])
t = [0:0.01:];
u=0*t;
[y,T,x] = lsim(sys,u,t)
subplot(121), plot(T,x(:,1))
xlabel('Time(s)'),ylabel('x_1')
subplot(122),plot(T,x(:,2))
xlabel('Time(s)'),ylabel('x_2')
In: Electrical Engineering