hi i need to do an integral in ++ but i need all the values ​​to be positive, i do not want negative integrals help!! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

hi i need to do an integral in ++ but i need all the values ​​to be positive, i do not want negative integrals help!!

help me?

29th Nov 2018, 1:09 AM
Jose Luis Perales
Jose Luis Perales - avatar
7 Answers
+ 2
Simply create the program to take all the values and when doing integration, perform a check to validate all the values to be positive only. Even if you fail, we help you out, but TRY FIRST.
29th Nov 2018, 2:00 AM
Sachin Artani
Sachin Artani - avatar
+ 1
in a few words I need to solve integrals and return absolute value to me
29th Nov 2018, 1:57 AM
Jose Luis Perales
Jose Luis Perales - avatar
+ 1
ok thanks bro let me see
29th Nov 2018, 2:02 AM
Jose Luis Perales
Jose Luis Perales - avatar
+ 1
In programming or in mathematics?
29th Nov 2018, 2:02 AM
Sachin Artani
Sachin Artani - avatar
0
Please elaborate your question!
29th Nov 2018, 1:53 AM
Sachin Artani
Sachin Artani - avatar
0
I thought of some series like simpson's and calculate n numbers of rectangles under the curve
29th Nov 2018, 2:00 AM
Jose Luis Perales
Jose Luis Perales - avatar
0
#include<stdio.h> #include<stdlib.h> #include<math.h> int main(void){ int i,N; float a,b,h; float integral=0.0; N=10; a=0.0; b=1.57079632679490; // = pi/2 h=(b-a)/N; for (i = 0; i < N; ++i) { integral = integral + h*sin(a+h*i+h/2.0); } printf ("La integral de senx en el intervalo es %f \n", integral); system ("pause"); return 0; } then brother what I'm looking for is to implement integrals with different intervals, and that their values ​​are absolute, this is a simple idea and only calculates the integral of sen .. :o
29th Nov 2018, 2:18 AM
Jose Luis Perales
Jose Luis Perales - avatar