Popular Posts

Vector-valued function, Lecture no 2, Calculus II

Saturday, March 12, 2011

Date: 14.02.2011

Describing the graph of vector-valued function

Let r(t) be a vector valued fuction which  can be represented as the resultant vector of two vector called ro and v
so,
r(t) = ro + tv...........................................(1)

equation (1) represents, r(t) passes through the point of position vector ro and as the direction or parallel to v.

Example 1: a problem has taken from the book of  Haward Anton  page no: 868
problem no: 13
Describe the graph of the vector valued function given as, r(t)= (3-2t) i + 5j

Solution: Given r(t)=(3-2t) i + 5j
                                       = 3 i + 0. j + ( -2 i + 5 j ) t

According to the above theory we can say that the graph of r is a straight line in two dimensional space passing through the point (3,0)  and parallel to the line -2 i + 5 j. we can show this in figure bellow-

Example 2: Describe the graph of 
r(t)= 3cos t i +2 sin t j - k

Solution: we get x=3cos t,   y= 2sin t  and z= -1
 the relation between x and y 
 the graph of r(t) is an ellipse in the plane z=-1 at the center(0,0,-1)
major axis length is 6, parallel to X axis and minor axis length is 4, parallel to Y axis.


Example 3: Describe the graph of 
                r(t)= 2ti-3j+(1+3t)k
Solution:  Given,
                r(t)= 2ti-3j+(1+3t)k
                    = 2ti-3j+k+3tk
                    = 0.i-3j+k+(2i+0.j+3k)t

So the graph of r(t) is a straight line in three dimensional space passing through the point (0,-3,1) and as the direction or parallel to the line 2i+0.j+3k.

Example 4: Describe the graph of 
              r(t)= 2cos t i -3 sin t j + k

Solution: Given,
                        r(t)= 2cos t i -3 sin t j + k
we get, x=2cos t,  y= -3sin t  and z=1

the relation between x and y 

the graph of r(t) is an ellipse in the plane z=1, the center is (0,0,1) .

Graph Sketching 

Norm of a vector valued function : Norm of a  vector valued function r(t) is denoted by ІІr(t)ІІ and is defined by 

ІІr(t)ІІ= Sqrt ((x(t))2+ (y(t))2+ (z(t))2)

 Example 1: Show that the graph of  r(t) is a circle where 
            r(t)= sin t i + 2 cos t j +sin t k
Solution: we get  x= sin t,   y=2 cos t        z= sin t

So the  relation,
x2+ y2+ z2=sin2t+4cos2t+3sin2t
                =4(sin2t+cos2t)=4

So we get Z= x   as      z= sin t
Thus the graph of r(t) lies on the sphere  x2+ y2+ z2= 4 and on the plane  Z= x of which center is (0,0,0) and radius is  2. the figure as bellow

 






(rest of the part of lecture 2 will be published soon)























MATLAB

Thursday, March 10, 2011

Do you need MATLAB book? This book is available here. You can get it just clicking on the link bellow.



http://www.mediafire.com/?yyc472fn7epzfzo
http://www.mediafire.com/?611algzautger4x

Solution of equation in one variable, Lecture 2, Numerical analysis

Tuesday, March 1, 2011

Date: 28.02.2011
Problem: By using bisecting method to find a real root of  f(x)= ex-3x2correct two decimal points.


FIXED POINT  ITERATION  METHOD/ ITERATION METHOD

This method is used to find the numerical solution to  polynomial  and other  equations such as

                                    f(x)=0......................................(1)

we start an initial approximation xo to the solution of   f(x)=0 and apply it to a procedure which gives a new approximation is normally a better one. Use this approximation to find a new one. This procedure is known as iteration method.

METHOD IN DETAILS:
Rewrite the given equation   f(x)=0 in the form

                              x=Φ(x).....................(2)

 let xo be the initial approximation to the desired root. Substitute  it on the right hand side of  (1).
we get the next approximation
x1=Φ(xo)
x2=Φ(x1)
x3=Φ(x2)
x4=Φ(x3)
.
.
.
xn=Φ(xn-1)    


stop when │xn-xn-1│< tolerance

Condition : This iteration method or fixed point iteration method is applicable when
│ϕ’(x)│< 1

Example: Use iteration method find a real root of  f(x)= x3+x2-1 correct to 3 decimal places.

Solution:  Let us have the eqution f(x)= x3+x2-1.    if   f(x)= 0   then      
                                                                    x3+x2-1 =0
                                                                   
We get if x=0 then f(x)= -ve and  x=1 then f(x)= +ve  then by bisection method, there must be solution of  f(x) in between 0 and 1 that is on the interval (0,1).
Let the solution xo=0.75 ( changeable, u can take different value between 0 and 1 )

x1=Φ(xo) =Φ(0.75)=0.7559

x2=Φ(x1)=Φ(0.7559)=0.7546

x3=Φ(x2)= Φ(0.7546)=0.7549

...........................................................
..........................................................


we get │x3-x2│=0.7549 - 0.7546
                              =0.0003

the result 0.0003 says that 0.7549 or 0.755 is the desired result.

Therefore the desired root is 0.755

Example 2: Use iteration method find a real root of  f(x)= 2x-cos x -3  correct to 3 decimal places.

Let us have the equation  f(x)= 2x-cos x -3=0
                                            
                                                   

To find the solution by iteration method we need to show that the given function satisfy the condition of iteration method. That is  



 │ϕ’(x)= -(sin x)/2│<1 . For any value of x this condition is satisfied.


Now let the solution be xo= 1.5 , Because for the value of x in radian unit the value of  f(x) becomes negative when x=1 and positive when x=2.

x1=Φ(xo) =Φ(1.5)=1.535368601

x2=Φ(x1)=Φ(1.535368601)=1.517710158

x3=Φ(x2)= Φ(1.517710158)=1.526530619

...........................................................

we get │x3-x2│=1.526530619 - 1.517710158
                              =0.008820461
the result 0.008820461 says that 1.526530619 or simply 1.527 is the desired result.

Therefore the desired root is1.527

(To be continued) 


picnic 2011

Hello everybody,

The picnic program of department of mathematics of University of Dhaka is about to run in track. The program is organized by the department.

Date: 06.03.2011 (Sunday )

Registration fees: 500 tk for per person.


Registration starts: 27.02.2011
Registration ends: 03.03.2011

To register contact with class representative of each section of mathematics department.
We hope everyone of department of mathematics of University of Dhaka will register in this program to make it more fruitful.