Computer Science, asked by jeelchavda4444, 19 days ago

how to find value of the variable with algorithm​

Answers

Answered by ashokdew73
0

Explanation:

In programming, a variable is a value that can change, depending on conditions or on information passed to the program. Typically, a program consists of instruction s that tell the computer what to do and data that the program uses when it is running.

Answered by gansiva03
0

Answer:

In general, you have an N-dimensional vector space over which the N independent variables can vary. Each of your constraints defines a region of the vector space and the intersection of all such regions is the region you wish to determine. Really, you are looking for the simplest (least complex) description of that region, since the region is already described by the collection of constraints. There are three possibilities: first, that there are no solutions in the region; second, that there are a finite number of solutions in the region; third, that there are infinitely many solutions in the region.

Your first step could be to treat the equations, if any, as a system of equations and use an algorithm for solving systems of equations to solve as much as possible from the equations alone. If nothing else, having some variables eliminated will help in the next step.

Similar questions