vote up -2 vote down star

I am creating an array named "fifty" with 50 elements.

Instruction #1:Initialize the array so that the first 25 elements are equal to the square of the index/key variable.

When squaring we are raising a base or number to some power so in PHP
we need some function like this:

<?php
    print pow(10,2); // Squared raised to the 2nd power = 100 
    print pow(10,3); // Cubed raised to the 3rd power = 1000
    print pow(10,4); // 10000
    print pow(-10, 4); // 10000
?>

Solved....

flag

I suggest going over your algebra101 first before trying to do those exercises 2 cents. – lemon Oct 24 at 6:35
The verb "square" has a very clear and common meaning, arising from the facts that, in Euclidean geometry, the area of a square is the product of its sides and those sides are of equal length. Hence "squaring" is x * x. – outis Oct 24 at 6:44
Defining and explaining "cubing" left as an exercise. – outis Oct 24 at 6:45
I took Algebra, they did not show us how to use php arrays and how to square the index in a php array, maybe that's cause I took Algebra 102. – Newb Oct 24 at 7:01
If you are not helping, why are you wasting your time flaming? And if you are so good with PHP and Algebra go do something that will help save the world instead of trying to hamper those here that are trying to learn. Nobody is forcing you to answer and comment, especially to outis, "cubing" is a red herring and has nothing to do with the inital question I asked. And Mr lemon, you response or comment is as sour as you name is "lemon." – Newb Oct 24 at 7:09
show 3 more comments

3 Answers

vote up 1 vote down check

This is very basic stuff. It's early in the morning where I'm at right now so nothing else to do. Here the answer to:

Instruction #1:Initialize the array so that the first 25 elements are equal to the square of the index/key variable.

<?php
$myarray = array();
for($i=0; $i<25; $i++) {
  $myarray[] = $i * $i;  // squaring
}

var_dump($myarray);  // output to screen
?>
link|flag
Disclaimer, I am new to PHP: Is there a reason why I can't use the pow() function? You response is pretty elegant and I take it you have been programming for a while, I am just learning and this stuff is all new to me, thank you for the response. – Newb Oct 24 at 21:53
It's okay. I understand that you're new to programming. Everybody starts as a newbie. Sometime I do think stackoverflow community doesn't welcome n00bs. You can use the pow function if you want. replace $myarray[] = $i * $i; with with: $myarray[] = pow($i, 2); // squaring – Yada Oct 25 at 2:42
Thank you, just got me some really good books on PHP: Got Andy Harris's PHP 6 & MySQL Programming pdf; in addition, to Larry Ullman's PHP for the Web pdf-really good books. All this stuff about loops and arrays is cool stuff, especially when working with data structures. Next time I will read first and try really hard to solve the problem myself before posting questions here, since all the answers seem to be in the text book, and man I really enjoy PHP with this guy Andy Harris and Larry Ullman, the examples and explanations are phenomenal. – Newb Oct 25 at 20:34
for ($i=0; $i<count[$myarray]; $i++) is supposed to be for ($i = 0; $i < count($myarray); $i++), cause [] is reserved for index keys, my bad... – Newb Oct 26 at 13:09
vote up 3 vote down

Squaring a number means multiplying it by itself. It's written with a superscript like 52. That means 5 squared, 5 times 5, 25. (It's the opposite of taking the square root—it's why square root is called square root!)

So element 1 should be 1, element 2 should be 4, element 3 should be 9, etc. If you have a variable foo then the square is foo * foo.

link|flag
Thank you, that really clarified in what context square is used in php and what square means in php. – Newb Oct 24 at 6:44
Now I know how to use square in a php array, I guess next time I will clarify my questions so as to avoid the above, and the flamers that have nothing useful to add other than just to type random crap. – Newb Oct 24 at 7:02
vote up 3 vote down

Square is a common mathematical term meaning "to the power of two"

For the second last 25 values they want the value in the array to be equal to the key * 3. So if the key was 145, the value would be 435.

Also, I weep for the education system that's teaching someone to program before teaching them reading comprehension.

link|flag
Okay I have no idea what reading comprehension has to do with this? I just wanted to understand the instructions intimately, so as to not mess up, call me picky about my results. – Newb Oct 24 at 6:42
Define reading comprehension? – Newb Oct 24 at 7:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.