BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Medo_Aldeni
Fluorite | Level 6

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!

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

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. 

View solution in original post

4 REPLIES 4
dougc
SAS Employee

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;
Medo_Aldeni
Fluorite | Level 6

Thank you dougc. your answer is great. I appreciate your help.

Rick_SAS
SAS Super FREQ

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. 

Medo_Aldeni
Fluorite | Level 6

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. 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

Multiple Linear Regression in SAS

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.

From The DO Loop
Want more? Visit our blog for more articles like these.
Discussion stats
  • 4 replies
  • 1208 views
  • 2 likes
  • 3 in conversation