Hello,
I'm trying to solve a nonlinear implicit equation with one varible by using the FROOT function. The flowing is my code:
proc iml;
start f1(x) global(y);
f=(2*y - 1 - x**0.5 + (1-x)**0.5);
return(f);
finish f1;
y = rand('Uniform');
interval = {0 1};
z = froot('f1',interval);
print z;
I got a nice result. For each y, I got z.
What I'm trying to do is to generate for example a random sample of 100 random varible z by using 100 y's of random numbers that are uniformly distributed. In other words, can I use the do loop to get 100 z's using 100 y's.
If the froot function gives just one solution, what do you recommend in order to solve this equation 100 times with differnt 100 inputs y.
THANK YOU!
You are asking to solve 100 different problems (rather than one problem 100 times) because for each parameter y you get a different function that you want the root for. Thus you need to update the y parameter before each call to FROOT:
proc iml;
start f1(x) global(y);
return 2*y - 1 - sqrt(x) + sqrt(1-x); /* use sqrt() instead of **0.5 */
finish f1;
u = j(100, 1); /* allocate vector */
call randgen(u, 'Uniform');
z = j(100, 1); /* store answers */
interval = {0 1};
do i = 1 to nrow(u);
y = u[i]; /* set global "target" variable */
z[i] = froot('f1', interval);
end;
call scatter(u, z);
Are you using the inverse CDF method to simulate data. If so, see this article on the inverse CDF method.
Here is a simple alteration to your code that gives 100 solutions:
proc iml; start f1(x) global(y); f=(2*y - 1 - x**0.5 + (1-x)**0.5); return(f); finish f1; num_trials = 100; z = j(num_trials,1,0.0);
interval = {0 1}; do ii = 1 to num_trials; y = rand('Uniform'); z[ii,1] = froot('f1',interval); end; print z; quit;
Thank you dougc. your answer is great. I appreciate your help.
You are asking to solve 100 different problems (rather than one problem 100 times) because for each parameter y you get a different function that you want the root for. Thus you need to update the y parameter before each call to FROOT:
proc iml;
start f1(x) global(y);
return 2*y - 1 - sqrt(x) + sqrt(1-x); /* use sqrt() instead of **0.5 */
finish f1;
u = j(100, 1); /* allocate vector */
call randgen(u, 'Uniform');
z = j(100, 1); /* store answers */
interval = {0 1};
do i = 1 to nrow(u);
y = u[i]; /* set global "target" variable */
z[i] = froot('f1', interval);
end;
call scatter(u, z);
Are you using the inverse CDF method to simulate data. If so, see this article on the inverse CDF method.
Thank you professor. I really apreaciate your help. Yes, as you said I want to simulate data but unfortunately the inverse CDF is not in closed form.
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!
Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.
Find more tutorials on the SAS Users YouTube channel.