Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Dave in naigeria
 
Posts: n/a
Default how to use multiple regression

Please can anyone help me solve this problem.

Use linest function to estimate what A,B,C & D will be, Compare them.

Y= a+bx+cx^2+dx^3

assum x=0, x=1, .................. x= 100

Calculate the corresponding value of Y. Choose any coefficient for the
constant.

Thanks and regards,
Dave
  #2   Report Post  
Conrad Carlberg
 
Posts: n/a
Default how to use multiple regression

As written, your post is a little puzzling.

To use LINEST() you're going to need to start with both a series of X values
and a series of Y values. So you won't "Calculate the corresponding value of
Y," but you can use the regression coefficients and the constant to get
estimates of Y. If what you're really after is the Y estimates, the TREND()
function is more straightforward than LINEST() because it calculates the
equation and applies it to your X values to return the Y estimates. But if
you use LINEST(), and assuming you have Y in column A, X in column B, X^2 in
column C and X^3 in column D, start by selecting a blank range four columns
wide and five rows high, type this formula:

=LINEST(A1:A100,B1:D100,,TRUE)

and array-enter it with CTRL-SHIFT-ENTER instead of just ENTER. You can also
square and cube X in the arguments:

=LINEST(A1:A100,B1:B100^{1,2,3},,TRUE)

What do you want to compare A,B,C & D to? Zero? Something else? Use the
standard errors.

You can force the constant to zero using LINEST's third argument but in
general it's a bad idea.

--
C^2
Conrad Carlberg

Excel Sales Forecasting for Dummies, Wiley, 2005


"Dave in naigeria" <Dave in wrote in
message ...
Please can anyone help me solve this problem.

Use linest function to estimate what A,B,C & D will be, Compare them.

Y= a+bx+cx^2+dx^3

assum x=0, x=1, .................. x= 100

Calculate the corresponding value of Y. Choose any coefficient for the
constant.

Thanks and regards,
Dave



  #3   Report Post  
Dave in naigeria
 
Posts: n/a
Default how to use multiple regression

Thanks Conrad.
The equation is actually not written well x^2 means x squared and x^3 means
x cube.so the equation is

Y= a + bx + cxsquared + dxcube

"Conrad Carlberg" wrote:

As written, your post is a little puzzling.

To use LINEST() you're going to need to start with both a series of X values
and a series of Y values. So you won't "Calculate the corresponding value of
Y," but you can use the regression coefficients and the constant to get
estimates of Y. If what you're really after is the Y estimates, the TREND()
function is more straightforward than LINEST() because it calculates the
equation and applies it to your X values to return the Y estimates. But if
you use LINEST(), and assuming you have Y in column A, X in column B, X^2 in
column C and X^3 in column D, start by selecting a blank range four columns
wide and five rows high, type this formula:

=LINEST(A1:A100,B1:D100,,TRUE)

and array-enter it with CTRL-SHIFT-ENTER instead of just ENTER. You can also
square and cube X in the arguments:

=LINEST(A1:A100,B1:B100^{1,2,3},,TRUE)

What do you want to compare A,B,C & D to? Zero? Something else? Use the
standard errors.

You can force the constant to zero using LINEST's third argument but in
general it's a bad idea.

--
C^2
Conrad Carlberg

Excel Sales Forecasting for Dummies, Wiley, 2005


"Dave in naigeria" <Dave in wrote in
message ...
Please can anyone help me solve this problem.

Use linest function to estimate what A,B,C & D will be, Compare them.

Y= a+bx+cx^2+dx^3

assum x=0, x=1, .................. x= 100

Calculate the corresponding value of Y. Choose any coefficient for the
constant.

Thanks and regards,
Dave




  #4   Report Post  
Conrad Carlberg
 
Posts: n/a
Default how to use multiple regression

The equation is actually not written well x^2 means x squared and x^3 means
x cube.so the equation is

Y= a + bx + cxsquared + dxcube


That much was clear.
--
C^2
Conrad Carlberg

Excel Sales Forecasting for Dummies, Wiley, 2005


"Dave in naigeria" wrote in
message ...
Thanks Conrad.
The equation is actually not written well x^2 means x squared and x^3

means
x cube.so the equation is

Y= a + bx + cxsquared + dxcube

"Conrad Carlberg" wrote:

As written, your post is a little puzzling.

To use LINEST() you're going to need to start with both a series of X

values
and a series of Y values. So you won't "Calculate the corresponding

value of
Y," but you can use the regression coefficients and the constant to get
estimates of Y. If what you're really after is the Y estimates, the

TREND()
function is more straightforward than LINEST() because it calculates the
equation and applies it to your X values to return the Y estimates. But

if
you use LINEST(), and assuming you have Y in column A, X in column B,

X^2 in
column C and X^3 in column D, start by selecting a blank range four

columns
wide and five rows high, type this formula:

=LINEST(A1:A100,B1:D100,,TRUE)

and array-enter it with CTRL-SHIFT-ENTER instead of just ENTER. You can

also
square and cube X in the arguments:

=LINEST(A1:A100,B1:B100^{1,2,3},,TRUE)

What do you want to compare A,B,C & D to? Zero? Something else? Use the
standard errors.

You can force the constant to zero using LINEST's third argument but in
general it's a bad idea.

--
C^2
Conrad Carlberg

Excel Sales Forecasting for Dummies, Wiley, 2005


"Dave in naigeria" <Dave in wrote in
message ...
Please can anyone help me solve this problem.

Use linest function to estimate what A,B,C & D will be, Compare them.

Y= a+bx+cx^2+dx^3

assum x=0, x=1, .................. x= 100

Calculate the corresponding value of Y. Choose any coefficient for the
constant.

Thanks and regards,
Dave






  #5   Report Post  
Jerry W. Lewis
 
Posts: n/a
Default how to use multiple regression

Conrad already explained how to fit a cubic polynomial with LINEST. An
alternative to using the LINEST coefficients to predict y values at 1 to
100 would be

=TREND(known_ys,known_xs^{1,2,3},ROW(A1:A100))

array entered.

Jerry

Dave in naigeria wrote:

Please can anyone help me solve this problem.

Use linest function to estimate what A,B,C & D will be, Compare them.

Y= a+bx+cx^2+dx^3

assum x=0, x=1, .................. x= 100

Calculate the corresponding value of Y. Choose any coefficient for the
constant.

Thanks and regards,
Dave


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
multiple regression indiana_jones81 Excel Worksheet Functions 3 October 18th 05 04:27 PM
multiple regression September21 New Users to Excel 5 September 25th 05 11:48 PM
Multiple Regression in Excel 2002 SP3 (Office XP)? KA Excel Worksheet Functions 3 September 23rd 05 01:50 AM
formula for linear regression DBane Excel Worksheet Functions 14 September 1st 05 09:54 PM
mutiple regression help happycow Excel Discussion (Misc queries) 1 July 30th 05 04:47 AM


All times are GMT +1. The time now is 02:39 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"