Top "Equation" questions

A statement that the values of two expressions are equal indicated by the sign = .

Mathematical equation manipulation in Python

I want to develop a GUI application which displays a given mathematical equation. When you click upon a particular variable …

python math equation
convert RGB to grayscale in C

I used many formulas to convert from RGB to grayscale, but didn't get good results compared to GIMP. I already …

c equation graphic
Calculating opacity value mathematically

How is opacity calculated mathematically? There is opacity value in Photoshop, CSS etc. Actually this opacity is the transparent behavior …

colors opacity equation mathematical-expressions
\right) doesn't work on LaTeX multiline equation

I'm writing an equation on LaTeX and when I want to close the formula with \right) it doesn't work. I'll …

latex multiline equation parentheses tex
Solving a simultaneous equation through code

This seems like an incredibly simple and silly question to ask, but everything I've found about it has been too …

algorithm math equation
How to solve Linear Diophantine equations in programming?

I have read about Linear Diophantine equations such as ax+by=c are called diophantine equations and give an integer …

c++ algorithm equation algebra
General - Is there a way to calculate an average based off of an existing average and given new parameters for the resulting average?

Lets say, we're calculating averages of test scores: Starting Test Scores: 75, 80, 92, 64, 83, 99, 79 Average = 572 / 7 = 81.714... Now given 81.714, is there a way to add …

math average equation
Solve this equation with fixed point iteration

How can I solve this equation x3 + x - 1 = 0 using fixed point iteration? Is there any fixed-point iteration code (especially …

python equation nonlinear-functions numerical-analysis fixed-point-iteration
how to handle an asymptote/discontinuity with Matplotlib

When plotting a graph with a discontinuity/asymptote/singularity/whatever, is there any automatic way to prevent Matplotlib from 'joining …

python numpy matplotlib equation sympy
Solve this equation with fixed point iteration method in python

f(x) = x^2- 2x - 3 = 0 How can I solve this equation non-linear, and used fixed point iteration method in …

python numerical-methods equation nonlinear-functions fixed-point-iteration