In Gauss-legendre integration we need to find zeros of the legendre function but i can't find a way to write code that enable me to do that? I understand there are list of "xi"s out there by which this function equals to zero but can we write program that find these "xi"s on it own?
is it possible to write a program that can find zeros of a certain function?
964 Views Asked by Mohammad Amin Khanpour At
1
There are 1 best solutions below
Related Questions in MATH
- How to restrict vpasolve() to only integer solutions (MATLAB)
- Need clarification on VHDL expressions involving std_logic_vector, unsigned and literals, unsure about compiler interpretation
- What is the algorithm behind math.gcd and why it is faster Euclidean algorithm?
- How to throw a charged particle in a electric vector field?
- Issues with a rotation gizmo and sign flips when converting back to euler angles
- Solving the area of a 2 dimensional shape
- WorldToScreen function
- Algorithm to find neighbours of point by distance with no repeats
- Detecting Circles and Ellipses from Point Arrays in Java
- three parameter log normal distribution
- Bound for product of matrices
- Javascript animation taking incorrect amount of time to reach desired location
- Converting Math.js-like Expressions to Runnable Python Code
- Looking for a standard mathematical function that returns 0 if x = 0 and a constant k when x <> 0
- Partitions in co-lexicographic order (PARI/GP algorithm without recursion)
Related Questions in POLYNOMIAL-MATH
- Can SageMath environment libraries be converted to SymPy libraries for running code on different hardware devices that do not support SageMath?
- Legendre polynomials in python
- Cubic model coefficient drastically different that what it actually is but provided correct prediction
- Math.NET 6th order polynomial fit returns infinity and NaN as parameters
- numpy polyroots implementation
- Implementing Buchberger's algorithm for Gröbner basis in Python using Sympy
- Monomial comparison in SymPy with various monomial orderings
- Multiplying polynomials using dictionaries in Python
- Using the polynomial equation for each segment in each channel for a list serial number and time stamps
- Authentic List of NP, NP Complete and NP Hard problems
- Partial fractions - equivalent of MATLAB's partfrac and Mathematica's apart in Julia
- Formula to calculate how hours correlate to fixed interval maintenance schedule
- how to implement least square polynomial with no built in methods using python?
- how to express Chebyshev sequence constants for function approximations in an interval other than [-1,1]?
- What is the logic behind this nvidia 's arctan2?
Related Questions in NUMERICAL-INTEGRATION
- Integrating with an array of upper limits without sacrificing time efficiency
- Why am I getting MethodErrors when using continuous callback in Julia ODE solver?
- Solving double integration in python using scipy.integrate
- Optimum Time step for Verlet's method to solve Damped Simple Harmonic Motion ODE
- Problem in Gaussian Quadrature with Hermite Polynomials
- Vectorize `scipy.integrate.nquad` integrand for use with `qmc_quad`?
- Monte Carlo 4D integral with variable limit
- Zero value when computing an integral in 4-dimensions using quasi-Monte Carlo quadrature
- Distribution of the difference of two beta random variables: Issue implementing it
- How can I speed up the process of integrating a complex function?
- Backward in time integration of numerical ODE
- Fit for a parameter when the function is obtained by numerical integration in Python
- How do I do an Integration of the real part of a complex function from zero to infinity?
- Skip NaN values when integrating using numpy trapz
- Sympy: Integral(0, (R, b, r)) not simplifying to zero when stemming from the Leibniz rule
Related Questions in POLYNOMIAL-APPROXIMATIONS
- Approximation Algorithms for the Longest Simple Path in a Directed Graph
- Randomized Relaxation of Complex Linear Assignment Problem
- matrix not updating in knapsack algorithm
- Nonlinear PDE solver with Spectral Method using Chebyshev
- Legendre polynomials in python
- Math.NET 6th order polynomial fit returns infinity and NaN as parameters
- How to efficiently apply polynomials in C++ without a loop?
- How to do polynomial interpolation given a set of points?
- Fast but accurate trigonometric modulo range reduction for moderate magnitude inputs
- Simplify a trigonometric expession with Mathematica
- Why is there a discrepancy in Chebyshev coefficients?
- (Cephes) Approximation of log1p
- Polynomic approximation with gradient descent
- Polynomial approximation does not represent accurate approximation of line passing through data points in python
- y = b0 + b1x + b2x^2 Equation from Polynomial Regression Code?
Related Questions in GAUSS
- How to calculate spectral density in R without canned function?
- What is the Problem with the CASADI examples for callbacks?
- Probability distribution of results from one, two and more draws
- Maple error - "illegal use of a formal parameter"
- How to fit 2 gauss in python
- Generate dataframe using Gauss law
- javascript adding up numbers in sequence returns incorrect number when big numbers are passed
- Unit of a gaussian smoothing of an image
- How to keep a matrix unchanged
- Changing a defined constant in a dll compilated file from external application
- Gauss code to R code conversion, for if-else statement
- using numpy.polynomial.hermite.hermfit in python for curve fitting to data?
- How to plot Gauss sums?
- Maple, writing a Proc to caculate inverse of a Matrix
- java remove gaussian noise
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
In general, finding zeroes of an arbitrary function is not a problem that can be solved by an algorithm. Whether your particular function or class of functions can be solved by an algorithm or not must depend intimately upon the specific mathematical properties of your functions, since your algorithm must rely on those properties specifically. Questions on your functions and what properties it might possess is out of scope for programming and probably computer science as well; I suggest math stack exchange. If you can get a mathematician to explain how to solve the problem by hand, at least in theory, then you are at the point where programmers and computer scientists can start to help you.