 Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) |
|
|
|
Posts: 520
Thanks: 34
Thanked 6 Times in 3 Posts
Join Date: Jun 2007
Location: Brasil
|
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) -
07-07-2008, 05:07 PM
thanks bro. i sended u my assignment u think the last one i did is right? #5?
_________________________
|
|
|
|
 |
 Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) |
|
|
|
Posts: 4,435
Thanks: 0
Thanked 17 Times in 13 Posts
Join Date: Nov 2005
Location: USA
|
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) -
07-07-2008, 07:12 PM
lol well
i might be wrong
but
#1 is chlorine
#2 is boron (not sure if energy level means filled but i don't think it does) boron is 1s2 2s2 2p1 so it should be it
#3 i'm pretty sure is helium
#4 Hydrogen unless metalloids count
#5 i'm sorry but balancing equations is a joke if you can't do them you fail on life
Boston Red Sox World Series Champions:
1903, 1912, 1915, 1916, 1918, 2004, 2007
New England Patriots Super Bowl Champions:
XXXIX, XXXVIII, XXXVI
Boston Celtics NBA CHampions:
1957, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1968, 1969, 1974, 1976, 1981, 1984, 1986, 2008
6+ (hopefully) Champions in my Lifetime
|
|
|
|
 |
 Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) |
|
|
|
Posts: 4,435
Thanks: 0
Thanked 17 Times in 13 Posts
Join Date: Nov 2005
Location: USA
|
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) -
07-07-2008, 07:14 PM
Quote:
Originally Posted by Jayc15
for number 5 i think its?
2Al+ 3F2 ---> 2 AlF3
4H2 + 2O2 ---> 4H2O
2Ch4 + 4O2 ---> 2 Co2 + 4H2O
what do you think?
|
...wow
well 2 and 3 are wrong
2H2(g) + O2(g) --> 2H2O(l)
CH4(g) + 2O2(g) --> CO2(g) + 2H2O(g)
ok i can't even read what i wrote
2(hydrogen gas) + (oxygen gas) --> 2(liquid waters)
and
(methane) + oxygen gas --> (carbon dioxide) + 2(water(gas))
Boston Red Sox World Series Champions:
1903, 1912, 1915, 1916, 1918, 2004, 2007
New England Patriots Super Bowl Champions:
XXXIX, XXXVIII, XXXVI
Boston Celtics NBA CHampions:
1957, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1968, 1969, 1974, 1976, 1981, 1984, 1986, 2008
6+ (hopefully) Champions in my Lifetime
|
|
|
|
 |
|
The Following User Says Thank You to spectra For This Useful Post:
|
|
 Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) |
|
|
|
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Join Date: Jun 2008
|
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) -
07-08-2008, 02:16 PM
alright guys i need major help on these. I know I'm asking for alot and i need these answers by tonight 2:00 am eastern time if you guys dont see this in time just save yourselves the time and dont attempt the problems.
use logarithmic differentiation to find the derivative of the function.
y = √x e^x^2 (x^2 + 1)^10
At noon, ship A is 150 km west of ship B. Ship A is sailing east at 35 km/h and ship B is sailing north at 25 km/h. How fast is the distance between the ships changing at 4:00 pm.
Find the intervals of increase or decrease
find the local maxiumum and minimum values
find the intervals of concavity and the inflection points.
b(x) = 3x^2/3 - x
a rectangular storage container with an open top is to have a volume of 10 m^3. the length of its base is twice the width. Material for the base costs $10 per square meter. Material for the sides cost $6 per square meter. Find the cost of the materials for the cheapest such container.
Last edited by bballj228; 07-08-2008 at 02:22 PM.
|
|
|
|
 |
 Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) |
|
|
|
Posts: 520
Thanks: 34
Thanked 6 Times in 3 Posts
Join Date: Jun 2007
Location: Brasil
|
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) -
07-08-2008, 04:31 PM
ok like i seriously need help on this..i know i suck at science but help would be alot appreciated
Research 2 major greenhouse gases. For each gas:
1. Give the chemical name of the gas.
2. Give the chemical formula of the gas.
3. Give the major sources of the gas, including at least one chemical reaction each to illustrate how the gas is produced.
4. Give one meaningful action that citizens like you can take to help reduce the levels of these gases in our atmosphere.
( /10 marks)
|
|
|
|
 |
 Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) |
|
|
|
|
Point whores are cool
Posts: 2,819
Thanks: 4
Thanked 18 Times in 14 Posts
Join Date: Feb 2006
|
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) -
07-10-2008, 01:30 AM
This isnt really a homework but regardless its school stuff so Ill just ask in here.... Its a c++ related question....
Quote:
#include <iostream>
#include <string>
using namespace std;
int main()
{
string aName = "George";
string userName;
cout << "Enter your first name: ";
cin >> userName;
if (userName==aName)
cout << "Greetings, George\n";
else if (userName < aName)
cout << "You come before George\n";
else
cout << "You come after George\n";
int n = userName.compare (0, 2, aName, 0, 2);
cout << "The first two letters of your name ";
if (n==0)
cout << "match ";
else if (n < 0)
cout << "come before ";
else
cout << "come after ";
cout << aName.substr (0, 2) << endl;
return 0;
}
|
Example from book: The output
Quote:
Enter your first name: Alfred
You come before George
The first two letters of your name come before Ge
|
I just need to know what exactly is being compared between Alfred and George?????
THANKS in ADVANCE
|
|
|
|
 |
 Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) |
|
|
|
Posts: 520
Thanks: 34
Thanked 6 Times in 3 Posts
Join Date: Jun 2007
Location: Brasil
|
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) -
07-13-2008, 12:22 PM
can anyone help me with this? Physics?

|
|
|
|
 |
 Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) |
|
|
|
Posts: 4,371
Thanks: 85
Thanked 50 Times in 47 Posts
Join Date: Dec 2005
Location: Maryland, USA
|
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) -
07-19-2008, 11:59 PM
Quote:
Originally Posted by Jayc15
can anyone help me with this? Physics?

|
really sorry, the reason why i didnt answer right away is b/c i had a hard time understanding some of the symbols and parts of the problem :/ i dont know if you still need help

^^^Melo_Man for the sig -- Go Knicks!^^^
Homework Help l Points Lottery!
Shawn Johnson Fan l 2007-2008 M2 Most Under Appreciated Member l Knicks Fan
|
|
|
|
 |
 Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) |
|
|
|
|
Rookie
Posts: 164
Thanks: 0
Thanked 0 Times in 0 Posts
Join Date: Dec 2005
Location: Toronto
|
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) -
07-20-2008, 10:35 AM
there's helping section too?...i would definately be a part of this and help others out on this thread.
Last edited by Anoticballa; 07-20-2008 at 10:39 AM.
|
|
|
|
 |
 Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) |
|
|
|
Posts: 2,963
Thanks: 102
Thanked 64 Times in 49 Posts
Join Date: Dec 2005
Location: Etobicoke, Ontario
|
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) -
07-21-2008, 09:16 PM
Quote:
Originally Posted by Anoticballa
there's helping section too?...i would definately be a part of this and help others out on this thread.
|
Just wait for someone to ask a question and hop in and answer I guess.
On a side note, I can probably help people out a bit with Biology/Bio-Chemistry. I plan to enroll with Bio-chemistry as my major after next year. No guarantees though.
Kosovo Is Serbia
|
|
|
|
 |
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
Powered by vBulletin® Version 3.7.1 Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0
Mixmakers.net
|