MixMakers.net - Your #1 Source for Sports Media!  
Register vbBux / vbPlaza FAQ Member List Calendar Mark Forums Read
Go Back   MixMakers.net - Your #1 Source for Sports Media! > General Discussion > Everything Nothing
Reload this Page General Homework Help Thread. (Math, Chem, Eng, Hist, Physics, etc)

Reply
 
Thread Tools Display Modes
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc)
Old
  (#161 (permalink))
Jayc15 is Offline
 
   
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?

_________________________
  
Reply With Quote
Sponsored Links
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc)
Old
  (#162 (permalink))
spectra is Offline
 
spectra's Avatar
 
   
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
  
Reply With Quote
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc)
Old
  (#163 (permalink))
spectra is Offline
 
spectra's Avatar
 
   
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) - 07-07-2008, 07:14 PM

Quote:
Originally Posted by Jayc15 View Post
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
  
Reply With Quote
The Following User Says Thank You to spectra For This Useful Post:
Jayc15 (07-09-2008)
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc)
Old
  (#164 (permalink))
bballj228 is Offline
 
   
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.
  
Reply With Quote
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc)
Old
  (#165 (permalink))
Jayc15 is Offline
 
   
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)
  
Reply With Quote
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc)
Old
  (#166 (permalink))
omfgfcku2 is Online
Point whores are cool
 
   
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
  
Reply With Quote
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc)
Old
  (#167 (permalink))
Jayc15 is Offline
 
   
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) - 07-13-2008, 12:22 PM

can anyone help me with this? Physics?

  
Reply With Quote
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc)
Old
  (#168 (permalink))
event_staff_9 is Offline
 
event_staff_9's Avatar
 
   
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) - 07-19-2008, 11:59 PM

Quote:
Originally Posted by Jayc15 View Post
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
  
Reply With Quote
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc)
Old
  (#169 (permalink))
Anoticballa is Offline
Rookie
 
Anoticballa's Avatar
 
   
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.
  
Reply With Quote
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc)
Old
  (#170 (permalink))
Milan is Offline
 
Milan's Avatar
 
   
Re: General Homework Help Thread. (Math, Chem. English, History, Phsysics, etc) - 07-21-2008, 09:16 PM

Quote:
Originally Posted by Anoticballa View Post
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
  
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0
Mixmakers.net