need help on equation a*b-c*d(t-1)=1....

6 views (last 30 days)
hello professionals....i need help on equation a*b-c*d(t-1)=1....where a and c are selected randomly and b , d and t are previously calculated.there shoulb be a loop until the equation become equal to one.thank u
  1 Comment
Walter Roberson
Walter Roberson on 12 Apr 2013
If you are looping, what is going to change in the loop? You would be choosing new random values "a" and "c" ? If so then you could end up with a very long wait indeed.

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 12 Apr 2013
For any given "a", there is exactly one "c" that works:
c = (1 - a*b)/(d*(1-t))
If when you say "selected randomly" you mean that they are to be in the range [0,1] then the condition could only be satisfied when c is between 1/(d*(1-t)) and (1-b)/(d*(1-t)) . Exception: if d = 0, then c can be anything and a = 1/b

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

No tags entered yet.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!