Welcome to Windows Help!
FAQFAQ    SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Factorization Question

 
   Windows Help (Home) -> Microsoft Excel RSS
Next:  XP SP3 broke my Sony DRU 710A drive. When will Mi..  
Author Message
Paul

External


Since: Feb 2, 2009
Posts: 3



(Msg. 1) Posted: Mon Feb 02, 2009 5:25 pm
Post subject: Factorization Question
Archived from groups: microsoft>public>excel (more info?)

Is it possible to calculate the following progmatically or with a formula?

(x^2+7x-30)

Thanks in advance

 >> Stay informed about: Factorization Question 
Back to top
Login to vote
Bernard Liengme

External


Since: Nov 30, 2008
Posts: 16



(Msg. 2) Posted: Mon Feb 02, 2009 5:25 pm
Post subject: Re: Factorization Question
Archived from groups: per prev. post (more info?)

For a given value of X you can calculate the value of x² +7x -30 with
=A1^2+7*A1-30 where A1 holds the value of x

But this is not factorizing. Please clarify " to calculate the following"
best wishes

 >> Stay informed about: Factorization Question 
Back to top
Login to vote
Paul

External


Since: Feb 2, 2009
Posts: 3



(Msg. 3) Posted: Mon Feb 02, 2009 5:25 pm
Post subject: Re: Factorization Question
Archived from groups: per prev. post (more info?)

Thanks for the quick response, apologies if it was unclear

If you calculate (x^2+7x-30) manually the answer hopefully is (x+10)(x-3) is
it possible to achieve this result with Excel?

Regards

Paul

"Bernard Liengme" wrote in message

> For a given value of X you can calculate the value of x² +7x -30 with
> =A1^2+7*A1-30 where A1 holds the value of x
>
> But this is not factorizing. Please clarify " to calculate the following"
> best wishes
> --
> Bernard V Liengme
> Microsoft Excel MVP
> [URL="http://people.stfx.ca/bliengme"]http://people.stfx.ca/bliengme[/URL]
> remove caps from email
>
> "Paul" wrote in message

>> Is it possible to calculate the following progmatically or with a
>> formula?
>>
>> (x^2+7x-30)
>>
>> Thanks in advance
>>
>
>
 >> Stay informed about: Factorization Question 
Back to top
Login to vote
Dana DeLouis

External


Since: Feb 2, 2009
Posts: 2



(Msg. 4) Posted: Mon Feb 02, 2009 5:25 pm
Post subject: Re: Factorization Question
Archived from groups: per prev. post (more info?)

Hi. These should give the two solutions, where b=7, and c=-30

= (-b + Sqrt(Power(b,2) - 4*c))/ 2
= (-b - Sqrt(Power(b,2) - 4*c))/ 2

HTH
Dana DeLouis

Paul wrote:
> Is it possible to calculate the following progmatically or with a formula?
>
> (x^2+7x-30)
>
> Thanks in advance
>
>
 >> Stay informed about: Factorization Question 
Back to top
Login to vote
Paul

External


Since: Feb 2, 2009
Posts: 3



(Msg. 5) Posted: Mon Feb 02, 2009 6:25 pm
Post subject: Re: Factorization Question
Archived from groups: per prev. post (more info?)

Dana

Thanks very much, thats exactly what I wanted

Regards

Paul

"Dana DeLouis" wrote in message

> Hi. These should give the two solutions, where b=7, and c=-30
>
> = (-b + Sqrt(Power(b,2) - 4*c))/ 2
> = (-b - Sqrt(Power(b,2) - 4*c))/ 2
>
> HTH
> Dana DeLouis
>
> Paul wrote:
>> Is it possible to calculate the following progmatically or with a
>> formula?
>>
>> (x^2+7x-30)
>>
>> Thanks in advance
 >> Stay informed about: Factorization Question 
Back to top
Login to vote
Dana DeLouis

External


Since: Feb 2, 2009
Posts: 2



(Msg. 6) Posted: Mon Feb 02, 2009 8:56 pm
Post subject: Re: Factorization Question
Archived from groups: per prev. post (more info?)

Hi. Glad to help.
You may be interested in the following...

[URL="http://en.wikipedia.org/wiki/Quadratic_equation"]http://en.wikipedia.org/wiki/Quadratic_equation[/URL]

= = =
Dana DeLouis


Paul wrote:
> Dana
>
> Thanks very much, thats exactly what I wanted
>
> Regards
>
> Paul
>
> "Dana DeLouis" wrote in message

>> Hi. These should give the two solutions, where b=7, and c=-30
>>
>> = (-b + Sqrt(Power(b,2) - 4*c))/ 2
>> = (-b - Sqrt(Power(b,2) - 4*c))/ 2
>>
>> HTH
>> Dana DeLouis
>>
>> Paul wrote:
>>> Is it possible to calculate the following progmatically or with a
>>> formula?
>>>
>>> (x^2+7x-30)
>>>
>>> Thanks in advance
>
>
 >> Stay informed about: Factorization Question 
Back to top
Login to vote
Ron Rosenfeld

External


Since: Jan 21, 2009
Posts: 4



(Msg. 7) Posted: Mon Feb 02, 2009 9:22 pm
Post subject: Re: Factorization Question
Archived from groups: per prev. post (more info?)

On Mon, 2 Feb 2009 21:31:08 -0000, "Paul" wrote:

>Thanks for the quick response, apologies if it was unclear
>
>If you calculate (x^2+7x-30) manually the answer hopefully is (x+10)(x-3) is
>it possible to achieve this result with Excel?
>
>Regards
>
>Paul

You might be interested in a computer algebra program (free) called Maxima
[URL="http://maxima.sourceforge.net/"]http://maxima.sourceforge.net/[/URL]

With input of:

x^2+7*x-30

Factor --> (x-3)*(x+10)

and you can solve for 'x'

[x=-10,x=3]
--ron
 >> Stay informed about: Factorization Question 
Back to top
Login to vote
joeu2004

External


Since: Oct 17, 2008
Posts: 2



(Msg. 8) Posted: Mon Feb 02, 2009 10:23 pm
Post subject: Re: Factorization Question
Archived from groups: per prev. post (more info?)

On Feb 2, 1:32 pm, Dana DeLouis wrote:
>   = (-b + Sqrt(Power(b,2) - 4*c))/ 2
>   = (-b - Sqrt(Power(b,2) - 4*c))/ 2

Why use the POWER function instead of the exponential operator (^)?
In other words, why not b^2?

PS: Although the quadratic equation that you wrote above works for
Paul's polynomial, since you wrote it in the general form, I would
write the denominator as (2*a), where "a" is the coefficient of the
x^2 term. In Paul's case, a=1.

Note to Paul: What Dana provided are the "roots" of polynomial, not
the "factors". To answer your question: no, Excel itself cannot
provide the factors. "Is it possible" to do programmatically?
Probably; but I doubt that it's easy.
 >> Stay informed about: Factorization Question 
Back to top
Login to vote
Bernard Liengme

External


Since: Nov 30, 2008
Posts: 16



(Msg. 9) Posted: Tue Feb 03, 2009 9:17 am
Post subject: Re: Factorization Question
Archived from groups: per prev. post (more info?)

Paul,
Here I am being the nasty professor: you must learn the language of math.
What you wanted was to SOLVE the equation. Others have shown you how.
You may wish to visit
[URL="http://people.stfx.ca/bliengme/ExcelTips/QuadraticEqn.htm"]http://people.stfx.ca/bliengme/ExcelTips/QuadraticEqn.htm[/URL]
You will be asked to install a Microsoft Active-X component but this is
quite safe
best wishes
 >> Stay informed about: Factorization Question 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
PivotTable question - I have a table that has these 3 fields I'm trying to use in a pivot table. 1. Industry name - e.g. retail, automotive, healthcare, etc. 2. Project name 3. Total Contract Value (TCV) I drop Industry name in the Drop Row Fields Here. I drop Project Name i...

=SUMPRODUCT question - =SUMPRODUCT((Name=$A$3)*(Test=$C10)*(Timing=D$6)*(Score)) What if "Score" above is a letter of the alphabet, not a number? I'm not really wanting a sum, so much as a multiple criteria lookup. I used the above formulas in a file for a teach...

Data Valadation Question - I'm looking into using data validation for my spreadsheet. Will data validation allow you to do the following. Let's say cell A1 must match cell D1. So if in cell A1 you put X, but in cell D1 you put Y, can you have an error message coming up saying..

file open question - I have an issue that has developed with Excel 07. When ever I would click on a *.xls file I would get a short hourglass but nothing would happen. If I opened Excel first then the files would open normally. I tried registering the file type and then....

INDEX MATCH HELL ooops.. I mean HELP! - I know (or at least I think I do) that I can do this with INDEX MATCH. Here is what I want to do. I want to place this formula in cell C4 of Sheet 1. What I want this formula to do is to match the value of B2 of Sheet 1 with a list that is in Sheet 2...
   Windows Help (Home) -> Microsoft Excel All times are: Pacific Time (US & Canada)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]