OK, but the program that I typed is only the simplest example with what I have a problem. I'm solving more complicated engineering problem, with one variable, multiple equations and multiple unknowns, moreover it requires sequential iteration technique. The variable range of values is also...
Damn, another error. Correct form:
y=1..4 (range of values for variable y)
Given
x=1 (initial guess)
y=2*x(y)+1 (logical equation)
r(y)=Find(x(y))
Somebody know what is wrong with this ?
Sorry, mistake in rewriting from mathcad. The program is:
y=1..4 (range of values for variable y)
Given
x=1 (initial guess)
y(x)=2*x(y)+1 (logical equation)
r(y)=Find(x(y))
How about that ?
Indeed, on mathematical point of view guess value of x shouldn't be a function of variable y, You're right. But when I write x=1, r(y) becomes red ("This variable is undefined"), so the problem is still unsolved. Steve, could You type this to mathcad and take a closer look ? Peter.
It doesn't matter where the initial guess is placed in, it can be above or in the Given - Find block, but I try that and it is still not working. But thanks for interesting :) Some new suggestions ?
Hi. I would like to calculate an equation with variables in range of values (in Given - Find block), but I have problem with that. Let me explain on example what I'm talking about. I write:
y=1..4 (range of values for variable y)
Given
x(y)=1 (initial guess)
x(y)=2*x(y)+1...