Find u,w ve z with computer?

Slides:



Advertisements
Similar presentations
Statically Determinate and Indeterminate System of Bars.
Advertisements

Engineering Mechanics Lecture 2
1 /10 M.Chrzanowski: Strength of Materials SM1-05: Statics 5:Statically determined bar structures Trusses STATICALLY DETERMINED PLANE BAR STURCTURES (TRUSSES)
SYSTEM OF ORDINARY DIFFERENTIAL EQUATIONS Example: Mathematical model of a mechanical system is defined as a system of differential equations as follows:
Matlab Computer Experiments (Contd.) Vibes and Waves in Action University of Massachusetts Lowell April 03, 2009.
Solving Quadratic Equations Tammy Wallace Varina High.
CE Statics Lecture 7. EQUILIBRIUM OF A PARTICLE CONDITION FOR THE EQUILIBRIUM OF A PARTICLE A particle is in EQUILIBRIUM if: 1. it is at rest, OR.
Section 8.3 – Systems of Linear Equations - Determinants Using Determinants to Solve Systems of Equations A determinant is a value that is obtained from.
Lesson 2.5 The Fundamental Theorem of Algebra. For f(x) where n > 0, there is at least one zero in the complex number system Complex → real and imaginary.
Roots of a Polynomial: Root of a polynomial is the value of the independent variable at which the polynomial intersects the horizontal axis (the function.
EXAMPLES: Example 1: Consider the system Calculate the equilibrium points for the system. Plot the phase portrait of the system. Solution: The equilibrium.
From a vibration measurement on a machine, the damping ratio and undamped vibration frequency are calculated as 0.36 and 24 Hz, respectively. Vibration.
computer
Review Conjugate beam method Prepaid by:
Y=a+bx Sum of squares of errors Linear Regression: Method of Least Squares The Method of Least Squares is a procedure to determine the best fit line to.
5.6.1 – Square Root Method. Recall, we solved “quadratic equations” when we set a polynomial equation equal to 0 Example. x 2 + 5x + 6 = 0.
Examples: Write the transfer function of the electrical circuit including Op-Amp (Operational Amplifier). Write the Matlab program to calculate the eigenvalues.
Factoring Special Polynomials(3.8). Perfect Square Trinomials 4x x + 9 4x 2 + 6x + 6x + 9 (4x 2 + 6x) (+6x + 9) (2x + 3) (2x + 3) 2.
Complex Numbers, Division of Polynomials & Roots.
Solutions of system of nonlinear equations: Newton-Raphson Example 4: The kinematic equations for a Four-Bar mechanism can be written as (5th semester,
Solving equations with polynomials – part 2. n² -7n -30 = 0 ( )( )n n 1 · 30 2 · 15 3 · 10 5 · n + 3 = 0 n – 10 = n = -3n = 10 =
Warm-up Find the solutions to the polynomial equation.
, Free vibration Eigenvalue equation EIGENVALUE EQUATION
Section 3.4 – Zeros of a Polynomial. Find the zeros of 2, -3 (d.r), 1, -4.
SYSTEM OF ORDINARY DIFFERENTIAL EQUATIONS
The formulae for the roots of a 3rd degree polynomial are given below
Digital Signal Processing
M ATLAB – What Is It ? Name is from matrix laboratory Powerful tool for – Computation and visualization of engineering and science mathematics – Communication.
Free Body Diagram (FBD)
The formulae for the roots of a 3rd degree polynomial are given below
The formulae for the roots of a 3rd degree polynomial are given below
Finding Real Roots of Polynomial Equations
Use a graphing calculator to determine the graph of the equation {image} {applet}
The formulae for the roots of a 3rd degree polynomial are given below
Engineering Mechanics : STATICS
1. Use the quadratic formula to find all real zeros of the second-degree polynomial
Zeros to Quadratic Functions
Free Body Diagram (FBD)
Problem-1 A two member frame is supported by the two pin supports at A and D as shown. The beam AB is subjected to a load of 4 kN at its free end. Draw.
محاسبات عددی و برنامه نویسی
Warm-up: Find the equation of a quadratic function in standard form that has a root of 2 + 3i and passes through the point (2, -27). Answer: f(x) = -3x2.
3. LAGRANGE INTERPOLATION METHOD
Equation Review Given in class 10/4/13.
Solving Quadratic Equations using Square Roots
An Example for Engineering Problem on Finding Roots of
Solving Quadratic Equations by Factoring
SYSTEM OF DIFFERENTIAL EQUATIONS
CE Statics Lecture 9.
قوانين برگزاري مناقصات و آيين نامه مالي و معاملاتي دانشگاه علوم پزشكي و خدمات بهداشتي ،درماني تهران
Analysis of truss-Method of Joint
SYSTEM OF ORDINARY DIFFERENTIAL EQUATIONS
Quadratic Equations.
Statics Course Code: CIVL211 Dr. Aeid A. Abdulrazeg
y=a+bx Linear Regression: Method of Least Squares slope y intercept
Unit 3 Review (Calculator)
The formulae for the roots of a 3rd degree polynomial are given below
EXAMPLES: Example 1: Consider the system
Equation Review.
Structural Analysis II
Calculate 9 x 81 = x 3 3 x 3 x 3 x 3 3 x 3 x 3 x 3 x 3 x 3 x =
SYSTEM OF ORDINARY DIFFERENTIAL EQUATIONS
3. LAGRANGE INTERPOLATION METHOD
Calculate the integral with; a) Trapezoidal rule b) Simpson’s rule
Problem 5. 5 page The femur is in static equilibrium
Newton-Raphson Example 4:
The formulae for the roots of a 3rd degree polynomial are given below
Multiply by 5/40 and sum with 2nd row
The formulae for the roots of a 3rd degree polynomial are given below
CE Statics Lecture 8.
Presentation transcript:

Find u,w ve z with computer? Example 1: Find u,w ve z with computer? MATLAB code: clc;clear a=[-1 1 -3;0 3 -6;1 1 1]; b=[9;12;5]; c=inv(a)*b

Example 2: After applying the cutting method in a cage system, the following equations are obtained from static equilibrium conditions. The forces in FCK=6.157 kN and FCB=-3.888 kN are given. Therefore, calculate FJD, FFD, FCD ve FFC forces? A B F

A B F with MATLAB clc;clear F=inv(A)*B FJD= 1.5429 kN FFD= -14.3701 kN FCD= 10.1596 kN FFC= -4.7297 kN

Example 3: Find the roots of the polynomial ? with MATLAB >> roots(p) ans = -1.5495 0.1829 + 1.8977i 0.1829 - 1.8977i 1.1838 >>ezplot('3*t^4+5*t^2+6*t-20',-2,2)