Scilab Tutorial | Approximating an integral by adding rectangular bands

in #utopian-io6 years ago (edited)

What Will I Learn?


  • You will learn how to make an approximation of the value of an integral by using the Riemann sum concept.
  • At the end of this tutorial you will be able to build simple functions and define functions online in Scilab.

What will you need?


  • You need to have installed Scilab in your computer. I'm gonna use 5.5.2 version.
  • Basic Real Analysis knowledge
  • Programming knowlegde.

Difficulty


  • Basic

Tutorial Contents


In this tutorial we're gonna write the statements to define a function (a real function) and calculate an approximation of its Riemann integral. You will notice that it will be a very good approximation as long as we provide suitable parameters. Then, we're gonna write an script which will contain a function named Integrate and it will recieve three parameters (t1,t2,N) and return the approximate value of the integral, in order to you can use it whenever you want. Finally we're gonna check that our approximation actually works by doing an exercise and using the deff command.

I hope to you enjoy it!

Let's begin!


The integral


Sin título.png

can be approximated by adding rectangular bands whose width is h, as follow:


aproximate1.png

where h is:


aproximate2.png

N is the number of bands or rectangles, therefore N determines the quality of the approximation since the more rectangles there are the smaller will be the error. Take a look of the following picture.


aproximate3.png

You can consider the red area as the error.

There are many ways for numerical integration. This method consists of adding rectangles in order to approximately calculate the area under a curve.

Code


Let's begin building a Scilab function which will represent a real function. You can define any function you want but no continuous functions.

Step one

Declare a function.

You must provide name, inputs and outputs of the function. We're gonna declare a function called f with x as input and y as output. Of course, you can choose other names.


aproximate4.png

Step two

Setting the parameters of the integral.

Set the number of bands by giving a value for N. Remember that the higher is N the more exact will be the result. h is the width of each rectangle. Then, set up variable xk as height of the first rectangle. We're also going to initialize variable area as the area of the first rectangle.


aproximate5.png

Step three

Finally, we 're gonna calculate the sum of all rectangle areas using a for cycle. area will store the whole calcuted area after each cycle. The number of cycles is N-1 due to we had already calculated the first rectangle area in the previous step.


aproximate6.png

The complete code with N=100.

function[y]=f(x) //name: f, y:output, x: input
    y=sin(x);    //Body: f(x)=sin(x)
endfunction    

//Let's calculate integral of sin(x) from 0 to %pi

// Limits of integration
t1=0;
t2=%pi;
//
N=100;        //Number of bands
h=(t2-t1)/N;  //Rectangles width
xk=t1;        //Height of first rectangle

area=f(xk)*h; //Area of first rectangle 

//summation of f(xi)*h
for k=2:N
    xk=xk+h;
    area= area+f(xk)*h;
end

disp(area,"area=");  //Show the result

The aproximated area using 100 bands.


aproximate7.png

deff command


Now let's write an script which contains a function called Integrate so that we can use this function anytime.

Step one
Crate a new file in SciNotes and call it as you wish. Then, define a function, as we did in the previous section. This function will have three inputs: t1,t2,N , th limits of integration and the number of bands, and one output: result, the final result.


aproximate8.png

step two

The body of the function is the same algorithm we used in the previous section.

The final code is shown below:

function[result]=Integrate(t1,t2,N)

h=(t2-t1)/N
xk=t1
result=f(xk)*h

for k=2:N
    xk=xk+h
    result=result+f(xk)*h
end

endfunction

Execute this code before go to the next step.

Step three

In this step let's introduce the *deff command.

deff command allow us to define a function in a online way. Take a look of its syntax:

deff('[s1, s2, ...] = newfunction(e1, e2, ...)',text [,opt])

S1, S2,... are outputs and e1,e2,... are inputs. For example we can write the statement

deff('[f1, f2]= functionname(x,y)', ['f1=x^2+y^2'; 'f2=y'])

and define a function from sequences of instructions written in text strings. This function will have the same properties than functions we have already created.

We're gonna use deff to define a real function called f.

Step four

Now let's go to the console to define a function there with deff command. Take care about call it f since we called f to the function within Integrate. Once you have defined your real function, you can try the Integrate function.

aproximate9.png


This is it for now. I hope you've learned something new.

Thank you for reading!

Curriculum




Posted on Utopian.io - Rewarding Open Source Contributors

Sort:  

Am lucky to have come across you. I have problem with mathematic , I hope to learn from visiting your site

Glad to have you over here!
Best

Thank you for the contribution. It has been approved.

You can contact us on Discord.
[utopian-moderator]

Hey @miguelangel2801 I am @utopian-io. I have just upvoted you!

Achievements

  • You have less than 500 followers. Just gave you a gift to help you succeed!
  • Seems like you contribute quite often. AMAZING!

Suggestions

  • Contribute more often to get higher and higher rewards. I wish to see you often!
  • Work on your followers to increase the votes/rewards. I follow what humans do and my vote is mainly based on that. Good luck!

Get Noticed!

  • Did you know project owners can manually vote with their own voting power or by voting power delegated to their projects? Ask the project owner to review your contributions!

Community-Driven Witness!

I am the first and only Steem Community-Driven Witness. Participate on Discord. Lets GROW TOGETHER!

mooncryption-utopian-witness-gif

Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x