Hello, I have a problem. It seems easy but i couldn’t succeed.
What is the order of magnitute(big Oh) of the below expression,
sum(a^i* (n^2-i^2)), i=n, n+1, …..,n for |a|<1
here sum refers the sigma notation. Thanks alot.
Hello, I have a problem. It seems easy but i couldn’t succeed.
What is the order of magnitute(big Oh) of the below expression,
sum(a^i* (n^2-i^2)), i=n, n+1, …..,n for |a|<1
here sum refers the sigma notation. Thanks alot.
On Sat, 17 Dec 2005, oercim wrote:
> What is the order of magnitute(big Oh) of the below expression,
> sum(a^i* (n^2-i^2)), i=n, n+1, …..,n for |a|<1
> here sum refers the sigma notation. Thanks alot.
As the sum is on i and it goes from n to … n, there is but
one term in the sum, namely when i = n. Thus
sum(…) = a^n (n^2 – n^2) = 0
– To Google and MathForum users:
Reply only if adequate context is included _within_ the reply.
Otherwise all contexts are removed from my view,
the flow of thought disrupted and chaos reigns.
In particular for Google users:
Instead of simply hitting the prominent "Reply" link, which doesn’t
include a copy of the post to which one is replying, click the "Show
Options" link (toward the top of an item in the thread), which causes
a shaded area of links to appear next to the top of the item, including
"Reply" (first) that does introduce a copy of the previous text (offset
by > signs in the usual fashion).
—-
sorry, I made a mistake. It is from n to 2n. thanks
On Sat, 17 Dec 2005, oercim wrote:
> sorry, I made a mistake. It is from n to 2n. thanks
I’ve not the time nor the inclination for the clerical chore of back
tracking the thread to reconstruct the line of thought. If you want
intelligent and well thought answers, instead of sloppy inaccurate
answers from what I remember, then include the context pertinent to your
reply and to whom your are talking.
Please learn and use better math group manners as demonstrated
by other participants of this newsgroup and as described at
http://oakroadsystems.com/genl/unice.htm#quote
If you’re posting from Mathforum or Google, it is requested you use
the quote feature. Many of us use different news browsers than you.
Hello, my main problem is much difficult. I am stuck with it.
Let C and A be n*n matrices which have the below pattern.
| 1 0 0 0 . .. | | b 1 1 1 .. |
C=| a 1 0 0 …| , A=| 1 b 1 1 ..|
| a^2 a 1 0 …| | 1 1 b 1 … |
| a^3 a^2 a 1 …| | 1 1 1 b .. |
.. .. .. … . .. .. … … …
Let define as M=C’ACC’AC.
My problem is to find the asymptotic behaviour of
trace(M) which is eqaul to sum((i=1 to n)(j=1 to n)(Mij^2))
as n increases. I tested this in matlab.It is O(n^2). But I can’t
derive it anatically. It seemed to me very complicated. Can someone
help please? Thanks.