question |
réponse |
What is an embedded system? commencer à apprendre
|
|
A dedicated computer system embedded within a larger device, designed for specific control functions
|
|
|
Name three common communication protocols used in microcontrollers commencer à apprendre
|
|
|
|
|
What are the three main types of materials in electrical engineering commencer à apprendre
|
|
Conductors, semiconductors, insulators
|
|
|
What is the difference between countable and uncountable sets? commencer à apprendre
|
|
Countable sets can be out in one-to-one with natural numbers; uncountable sets cannot
|
|
|
Define reflexive, symmetric, and transistive properties of a binary relation commencer à apprendre
|
|
Reflexive xRx = xRx; symmetric xRy = yRx; transistive xRy = yRz then xRz
|
|
|
What does a =_ b (mod n) mean commencer à apprendre
|
|
a and b have the same remainder when divided by n
|
|
|
write the general form of a linear ordinary differential equation of order n commencer à apprendre
|
|
an(t)y^n + an-1(t)y^n-1=... a0(t)y = g(t)
|
|
|
How do you find the general solution to a homogenous linear ODE with constant coefficients commencer à apprendre
|
|
solve the characteristic equation for roots r; solution is a combination of terms like e^rt
|
|
|
What is the key idea behind the gaussian elimination alogirthm commencer à apprendre
|
|
use row operations to reduce the system to upper triangular form then solve by back substitution
|
|
|
Name two iterative methods for solving large linear systems commencer à apprendre
|
|
Jacobi method and gauss seidel method
|
|
|
What is the difference between combinational and sequential logic circuits commencer à apprendre
|
|
combinational output depend only on current inputs while sequential on inputs and past states
|
|
|
what is a tree in graph theory commencer à apprendre
|
|
a connected acyclic graph
|
|
|
what does the rank of a matrix indicate commencer à apprendre
|
|
the maximum number of linearly independent rows or columns
|
|
|
what is the difference between absolute and relative error commencer à apprendre
|
|
absolute error is the magnitude of the difference between true and approximate value; relative error is the absolute error divided by the true value
|
|
|
What is simple harmonic motion commencer à apprendre
|
|
oscillatory motion described by x=A cos(wt+ phi) where w = sqr(k/m)
|
|
|
define stability in system control commencer à apprendre
|
|
a system is stable if it returns to equilibrium after a disturbance
|
|
|
what is an equivalence relation commencer à apprendre
|
|
a relation that is reflexive symmetric and transitive
|
|
|
what is the role of eigenvalues and eigenvectors in solving systems of linear ODEs commencer à apprendre
|
|
they help find the fundamental solutions typically e^deltat v
|
|
|
name common numerical integration methods commencer à apprendre
|
|
trapezoidal and simpson rule
|
|
|
what is the wronskian used for commencer à apprendre
|
|
to check the linear independence of solutions to differential equations
|
|
|
what is the significance of the condition number of a matrix commencer à apprendre
|
|
it measures how sensitive the solution of a linear system is to changes or errors in the input
|
|
|
what is the difference between homogenous and nonhomgenous differential equations commencer à apprendre
|
|
homogenous has zero forcing them
|
|
|
what components make up a typical microcontroller architecture commencer à apprendre
|
|
cpu; ram; rom; i/o ports; timers; ADC/DAC; communication interfaces
|
|
|
difference between conductors semiconductors and insulators in terms of electron flow commencer à apprendre
|
|
conductors have free electrons for easy flow, semiconductors have linited free electrons; insulators gave very few free electrons
|
|
|
commencer à apprendre
|
|
it finds the shortest path efficiently using heuristics
|
|
|
define open loop and closed loop control systems commencer à apprendre
|
|
open loop has no feedback; close loop uses feedback to adjust output
|
|
|
what data structure is ideal for implementing a priority queue commencer à apprendre
|
|
|
|
|
what is the purpose of a flip flop in digital circuits commencer à apprendre
|
|
to store one bit of memory
|
|
|
formula for frequency of simple harmonic motion commencer à apprendre
|
|
|
|
|
difference between mean and variance of data set commencer à apprendre
|
|
mean avarage of values while variance is average of squared deviayions from mean
|
|
|
commencer à apprendre
|
|
graph whose vertices can be divided jnto two disjoint sets with edges only between sets
|
|
|
what is modular arithmetic used for commencer à apprendre
|
|
to perform calculations with numbers wrapped around after reaching a certain modules
|
|
|
how does the method of jndetermined coefficients work for solving ODEs commencer à apprendre
|
|
guess the form of particular solution based on g(t) and solve for coefficients
|
|
|
dofference between lu and choelsky decomposition commencer à apprendre
|
|
lu is for general matrices cholesky for symmetric positive definite matrices
|
|
|
name a common iterative method for large sparse linear systems and its key advantage commencer à apprendre
|
|
conjugate gradient method; it converges wuickly for positive definite matrices
|
|
|
what is the main cause of truncation error in nimerical methods commencer à apprendre
|
|
approximating infinite series or derivatives by finite steps
|
|
|
whats the general structure of a feedback control system commencer à apprendre
|
|
input - controller - plant - output - feedback -comparator - controller
|
|
|
how do you test uf a set of vectors is linearly independent commencer à apprendre
|
|
check if the determinant of the matrix formed by vectors is nonzero or use wronskian for functions
|
|
|
what is the significance of eigenvalues with negative real parts in control systems commencer à apprendre
|
|
they kndicate stable system behavior
|
|
|
difference between trapezoidal and simposns rile for number integration commencer à apprendre
|
|
approximation with trapezoids or uses a parabolic arcs generally more accurate
|
|
|
commencer à apprendre
|
|
a subset where all elements are equivalent under an equivalnce relation
|
|
|
commencer à apprendre
|
|
small input errors produce small output errors so no amplification of errors
|
|
|
whats bayes theorem used for in data classification commencer à apprendre
|
|
updating the probability estimate for a hypothesis as more evidence becomes available
|
|
|
dofference between parametric and non parametric estimation commencer à apprendre
|
|
in parametric we assume distribution
|
|
|
what role timers and interrupts play in microcontrollers commencer à apprendre
|
|
timers measure intervals; interrupts handle asynchronous events efficiently
|
|
|