Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ruler501

Pages: 1 ... 164 165 [166] 167 168 ... 184
2476
Site Feedback and Questions / Re: I think we need a better search engine.
« on: February 22, 2011, 09:53:57 pm »
I think the bars at the top need a reformat on this site. i believe this site is set up wonderfully but with a few changes the navigation might become simpler and easier.

2477
Math and Science / Re: Imaginary Numbers Question
« on: February 22, 2011, 09:34:26 pm »
I'm happy i understood what you typed and what I am writing about in my book(mostly ;))
Thanks again for the help

2478
I'll be glad to help if you need it. I was helped out a lot when I first got here, and am still being helped. this is a great community for helping each other out and getting help in.

2479
I think they prefer if you make it yourself but i was given a compiled version so I'm sure it is fine. I would try one more time at making it before you decide to just ask for the compiled version.

2480
News / Re: Site accidentally DoS'ed via Global CALCnet
« on: February 22, 2011, 09:28:44 pm »
It has taken long enough ;)...

2481
Math and Science / Re: Imaginary Numbers Question
« on: February 22, 2011, 09:26:10 pm »
OK thanks for the help I thought that would be the answer
(I'm so happy I'm not completely stupid :D)

2482
Math and Science / My Math Book
« on: February 22, 2011, 09:21:39 pm »
I am writing a book on learning math. I taught myself from an advanced 6th grader to a seventh grader who can (kindof) do Calculus and I want to help others do this. I want this book to be simple enough to understand, but include proofs for most things it does. I also partially wrote this book because I'm tired of everyone around me complaining because math is so hard so I am going to show them how easy it is. I plan on posting excerpts from it here for review so I can see how I'm doing I'm sure you guys can understand why I don't post the whole book so far. I have only been working on this for about a week and even then this is on/off work for me so currently I am 7 pages in. thank you for any feedback and I will be sure to mention everyone who gives me help in the acknowledgments.
At this time I do not plan to ever have this published It will just be something I distribute to friends or use to help me teach others math.

The first excerpt is here it is the first page from my book please comment or tell me what I can do better(i will also gladly take any praise you have to give :) )
Spoiler For "First Page":
The first and most important thing for you to learn about Algebra is variables. Variables are any placeholders for something else. In regular Algebra you will learn to use variables to represent numbers in a specific scenario. In early algebra you will mainly use two variables. One will be the independent variable which you change to modify the dependent variable. The most common name or symbol for the independent variable is x, and the most common one for the dependent variable is y. You might change the name of these variables to fit your scenario better. In most textbooks and other practice problems you will see x and y.
A function is anything where combinations of independent variables equal one specific dependent variable. You can prove if it is a function by looking at the inputs (independent variables) and the outputs (dependent variables) If there is more than one output for each input you do not have a function. A function can apply to many things through life, but in this book we will try to focus purely on algebraic functions. You express a function by replacing the dependent variable by f(x) where x is whatever you independent variable is.
Functions can be viewed in many ways the first way you should learn to view functions with is tables. In the table you have one column to tell you what the independent variable is then in the column directly across from that you should have a column telling you what the dependent variable is. To check to see if the values in the table are from a function you would check to see if there is only one dependent variable for each instance of the independent variable. It is not a function if it has more than one dependent value for each instance of the independent variable
Another way to view functions which you will probably use much more is graphs. The easiest way to do this is to use a graphing calculator. If you have a TI-84, a TI-83, or a TI-82 I will explain how to do that here. If you have a TI-Nspire it is explained in the appendix B. If you have any other kinds of calculator check your manual which probably came with it to see how to graph functions. From here on out when I say calculator I am referring to one of the aforementioned TI-80’s. To view a function on a calculator you would turn the calculator on and enter the equation into the space given when you press the Y= button. Once you have done that press the graph button and the function should be displayed. You can get a table on a calculator by pressing 2nd and then pressing graph. Graphs are the easiest things to check to see if they are displaying functions. You just look at it and see if a vertical or straight up and down line would pass through it in more than one place. If that happens then you do not have a function.
I have a title on top of that in a nice graphical header. It is chapter one of my book. Functions and Variables is the chapter name. the book has a currently undecided name

EDIT: I have posted a preview of chapter one as a Word 2003 document the password to access it is saftey. I will be happy to hear any feedback you have.

(I'm sorry if this is in the wrong forum)

2483
Math and Science / Re: Imaginary Numbers Question
« on: February 22, 2011, 09:15:44 pm »
I have one question i figured I should just add in here.
Can imaginary numbers be prime? I don't think negative numbers could be prime but I don't know about imaginaries. any help would be appreciated.

2484
MinGW is a fine download when I got it. where are you getting it from?

2485
Miscellaneous / Re: What is your avatar?
« on: February 22, 2011, 07:23:29 pm »
My avatar is a sprite I made for my most recent game

2486
Computer Programming / Re: C++ strange errors
« on: February 21, 2011, 11:44:29 pm »
thank you it seems to be working now. I'll post here if any strange things start happening.

2487
Computer Programming / Re: C++ strange errors
« on: February 21, 2011, 11:28:23 pm »
I have it working now I added one line of code It shows the output but those errors still pop up

EDIT: I just found a problem it only shows one number as output all 5 times

2488
Computer Programming / Re: C++ strange errors
« on: February 21, 2011, 11:23:49 pm »
I updated the code in the first post and  it is still giving me the same errors

2489
Computer Programming / Re: C++ strange errors
« on: February 21, 2011, 11:06:13 pm »
Microsoft Visual C++ 2010 Express Edition

2490
Computer Programming / C++ strange errors
« on: February 21, 2011, 11:01:06 pm »
I have been trying to make a math quiz to assist me in finding out my own skill compared to others and possibly to help me in my math tutorial style book. Here is my code to try and generate 5 random numbers from 1-5. It is displaying strange errors
Code: [Select]
/* rand example: guess the number */
#include <iostream>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
using namespace std;

int randomgen(int range, int bottom);

int main()
{
for(int i=0; i<5;i++)
{
int num;
num = randomgen(5, 1);
cout << num << endl;
}
system("PAUSE");
}

int randomgen(int range, int bottom)
{
int iSecret;
srand(time(NULL));
iSecret = rand()%range+bottom;
return iSecret;
}

Errors
Code: [Select]
'Chapter1.exe': Loaded 'E:\Book\Software\Chapter1\Release\Chapter1.exe', Symbols loaded.
'Chapter1.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', Cannot find or open the PDB file
'Chapter1.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', Cannot find or open the PDB file
'Chapter1.exe': Loaded 'C:\Program Files\Alwil Software\Avast5\snxhk.dll', Cannot find or open the PDB file
'Chapter1.exe': Loaded 'C:\WINDOWS\system32\msvcp100.dll', Symbols loaded.
'Chapter1.exe': Loaded 'C:\WINDOWS\system32\msvcr100.dll', Symbols loaded.
'Chapter1.exe': Loaded 'C:\WINDOWS\system32\shimeng.dll', Cannot find or open the PDB file
'Chapter1.exe': Unloaded 'C:\WINDOWS\system32\shimeng.dll'
The program '[2980] Chapter1.exe: Native' has exited with code 0 (0x0).

I don't know what is going on please help

Pages: 1 ... 164 165 [166] 167 168 ... 184