bannerBaka-UpdatesManga
Manga Poll
Do you prefer reading a completed or ongoing series?
I only read completed series
I prefer reading completed series but dabble in ongoing series
I don't care
I prefer reading ongoing series but dabble in completed series
I only read ongoing series
 
mascot
Manga is the Japanese equivalent of comics
with a unique style and following. Join the revolution! Read some manga today!

RSS Feed

Homework Help

Pages (26) [ First ...22 23 24 25 26 ] Next
You must be registered to post!
From User
Message Body
Post #585740 - Reply To (#585739) by neonkitty
Post #585740 - Reply To (#585739) by neonkitty
user avatar
Member


12 years ago
Posts: 1143

Warn: Banned

Here is the unit conversion if that is what your looking for.


________________
Post #585741 - Reply To (#585739) by neonkitty
Post #585741 - Reply To (#585739) by neonkitty
user avatar
Member


12 years ago
Posts: 68

Quote from neonkitty

Everything went well. I got a 40/40. 😛


Biology Lab homework help. _"

Head CT Scan (2 mSv)
Airplane flight from New York to LA (40 µsv)

•Radiation exposure of 4 Sv can be lethal.
•REMEMBER YOUR METRICS PREFIXES!!

22.How many airplane flights from ...

Hit me if I'm wrong, but...
You'd take the number of µsv in a CT scan and divide it by the number of µsv in an airplane flight.
An equation equation is something like
Number of µsv in a CT scan=Number of µsv in airplane flight X number of flights


Post #585743 - Reply To (#585741) by 007demosthenes
Post #585743 - Reply To (#585741) by 007demosthenes
user avatar
Member


12 years ago
Posts: 318

Quote from Transdude1996

Here is the unit conversion[/url] if that is what your looking for.

saved me the trouble of having to convert. 😛

Quote from 007demosthenes

Hit me if I'm wrong, but...
You'd take the number of µsv in a CT scan and divide it by the number of µsv in an airplane flight.
An equation equation is something like
Number of µsv in a CT scan=Number of µsv in airplane flight X number of flights

And that's it, I just checked with a few friends and we ended up with the same answer. 🙂 We are very good at making things 10xs harder than they really are. 🤣


user avatar
Member


12 years ago
Posts: 1143

Warn: Banned

Two friends and I have to build a cardboard boat that can carry at least two of us. We are trying to figure out the volume that the boat will have to displace to at least do it. The total mass of the both of us is 200 kg. How do we find the volume of water that we displace, and what are some recommended equations that we should use?


... Last edited by Transdude1996 12 years ago
________________
Post #586243 - Reply To (#586152) by Transdude1996
Post #586243 - Reply To (#586152) by Transdude1996
user avatar
Member


12 years ago
Posts: 510

Looks pretty comprehensive: Cardboard boat


Member


12 years ago
Posts: 214

isn't that 200kg of water?


user avatar
Member


12 years ago
Posts: 1143

Warn: Banned

Thank you. We kept on getting .2 m cubed as an answer, but we believed that it was wrong. Guess that we were right.


________________
Member


12 years ago
Posts: 272

do you mean the volume of the water you displace when boarding the boat?

the weight force is : F= m*g (this m is the total mass of you two and the boat)

the force F you get is epuivalent to the weight force of the water you displace.

so you use: m= F/g to get the weight of the displaced water.

with the density equation you get the volume


________________
Post #586444 - Reply To (#586442) by jelzin89
Post #586444 - Reply To (#586442) by jelzin89
user avatar
Member


12 years ago
Posts: 1143

Warn: Banned

That's what I said already. Thanks anyway.

Case Closed


________________
user avatar
Member


12 years ago
Posts: 318

anyone know what mytho-poetic explanations are?

Edit: never mind (:


... Last edited by neonkitty 12 years ago
user avatar
Member


12 years ago
Posts: 124

Okay guys, this one is driving me nuts, and Google doesn't have any answers.

The problem is this

arccos(5)=x, which is the same as saying cos(x)=5. What is the value of x? I know it is supposed to be a complex number.

I can get as far as to say 10=e^(ix) + e^(-ix), but I don't remember what to do from here.... any takers?

for those wondering how I got to that,
e^(ix) = cos(x) + isin(x)
e^(-ix) = cos(x) - isin(x)

cos(x) = (e^(ix) + e^(-ix)) / 2


________________

"This year, they should give the Nobel Peace Prize to the inventors of cancer and accidents, because research shows those are the main causes of disarmament."

Member


12 years ago
Posts: 27

arccos can be defined in terms of the complex logarithm to be arccos(x) = -iln(x + isqrt{1-x^2})

I think. You should go through the proof yourself.

theta = arccos(x)
e^(itheta) = cos(theta) + isin(theta) = cos(arccos(x)) + isin(arccos(x))
= x + i
sqrt(1-x^2)

so: ln(e^itheta) = itheta = ln(x + i*sqrt(1-x^2))

FINAL ANSWER: arccos(5) = -i * ln(5-sqrt(24)) ~= 2.29 i

edit: checked in matlab, this is a correct answer. the general solution is x = -i * ln(5-sqrt(24)) + 2npi because, of course, cosine is periodic (even in the complex plane)


... Last edited by Ashen-Shugar 12 years ago
user avatar
Member


12 years ago
Posts: 124

Thank you. Also, your proof is quite nice. Now I don't have to go mad. 🙂


________________

"This year, they should give the Nobel Peace Prize to the inventors of cancer and accidents, because research shows those are the main causes of disarmament."

user avatar
Noblesse Forever!
Member


11 years ago
Posts: 1067

Urgent help! I am in first year in my undergraduate course and we are having C programming. Sadly tomorrow is exam! We are at very basic level so it's going to be easy or so I hope.

Could anyone please write a c code for the foll. question? I know how to find the average but how to find the best of two? Please write the program using stdio.h only... i mean no help of conio or some special functions as we haven't stsrted them.

Question: C-program to accept three test marks from user and print the average of best of two.

I would be greatful if you can provide the answer in few hours as we are having exam after 13 hours! T_T Thanks.


________________
user avatar
Site Admin


11 years ago
Posts: 10867

May not be exact C syntax since I didn't throw it into a compiler

The key is that it's harder to find the highest 2 of 3 than the lowest 1 of 3 (difference of finding 2 things vs 1 thing). But the two are actually equivalent in meaning for this question. Trying to find the former would involve more nested if/else statements

int averageofbestoftwo (double a, double b, double c)
{ double result = 0;

//find lowest number  
  
//if a is lowest  
if (a < b && a < c)  
{  
    //then average b and c  
    result = (b + c) / 2;  
}  
//if b is lowest  
else if (b < a && b < c)  
{  
    //then average a and c  
    result = (a + c) / 2;  
}  
//then c is lowest  
else  
{  
    //then average a and b  
    result = (a + b) / 2;  
}  
  
return result;  

}


________________

A just ruler amongst tyrants

Pages (26) [ First ...22 23 24 25 26 ] Next
You must be registered to post!