Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and the Yahoo Answers website is now in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Seth H
Which orbital element is symbolized with and X?
I am trying to understand orbital dynamics, in particular Langrange planetary equations.
I have come across the symbol X (chi) used as an orbital element. However, I do not know which element it is. Is it true anomaly? Mean anomaly? Any help is appreciated.
2 AnswersAstronomy & Space8 years agoHelp understanding radiation pressure?
I am currently trying to learn about the physics of solar radiation pressure. I understand how radiation transfers momentum to a satellite, but I am a little unsure of how this affects eccentricity from a simple mathematical standpoint. Writing an answer and/or useful links would be helpful.
1 AnswerAstronomy & Space8 years agoHow do I get involved in physics research as a Freshman?
I am currently a freshman at Berkeley and am planning to be a physics major. I would like to do some sort of internship or research over the summer. However, most institutions give preference to juniors and seniors when it comes to undergraduate research. I currently have no research experience, but will try to get some for this spring. Are there any programs I catered to freshman physics majors that I can apply to? (Links would be helpful)
1 AnswerPhysics9 years agoIs it possible to transfer to TU Munich or ETH Zurich?
I am currently an undergrad (1st year) at a university in the United States, and I am planning to major in physics. I am currently learning German and have a great interest in living in continental Europe. I am considering the possibility of transferring to a school in Germany (or a nearby German speaking country). I am very interested in TU Munich or ETH Zurich. Is it feasible to transfer to one of these schools, and if so, how might I go about doing it? Please provide links!
1 AnswerHigher Education (University +)9 years agoCan anyone proofread this german paragraph?
I am currently studying German and was wondering if anyone would be able to proofread this German paragraph.
In Berkeley, träume ich manchmal von einem perfekten Leben. In mein perfekten Leben, habe ich einen Trauzimmer. In mein Trauzimmer, möchte ich einen großes Bett, einen Sessel, einen großes Fernseher, einen Laptop, aber gibt es keinen Wecker. Infolgedessen, kann ich am Nachmittag aufstehen. In mein perfekten Leben, ich habe einen kleinen und braunen und weißen Hund. Aber, ich möchte nicht eine Katze. Zusätzlich möchte viel Geld. Mit meinem Geld, kann ich ein Flugzeu einkaufen und ich kann nach Europa zu reisen. In Europa, kann ich Italienisch unde Französisch essen.
1 AnswerLanguages9 years agoHow do I get Windows 7 on Macbook Air?
I recently purchased a macbook air and I want to put Windows 7 on it. I can get a free upgrade of Windows 7. What is the best way to get Win 7 on the computer? I was thinking of purchasing a version of XP or Vista and then using the upgrade to get to Win 7. Or could I install the preview of Windows 8 and degrade somehow to Windows 7?
4 AnswersSoftware9 years agoDo you know of any songs played on both sides of a war?
I'm doing a project for a music class, and I need to find two songs that have been used on both sides of a war. For example, I have found Lili Marleen, which was played on both the German and British side during World War II. In addition, I would like there to be a good bit of information about the song, being that I have to write a paper about it. Please provide a couple of links if possible.
2 AnswersOther - Music9 years agoWhich school should I choose?
I have recently been accepted to the University of Illinois (Urbana Champaign), Georgia Tech, and UC Berkeley for undergraduate studies, and I want to major in physics. I live in Georgia, so Georgia Tech is very cheap. and have gotten in state tuition for UIUC. UIUC is in the top ten in physics. How much better would Berkeley be for me than UIUC or Georgia Tech?
3 AnswersHigher Education (University +)9 years agoCan anyone explain this code?
I am currently taking a computer class and need help understanding this code and it would help if you could explain what is going in detail in these three classes.
/**
* Implements a falling letter cube for the Ramblecs game
*/
import java.awt.*;
public class FallingCube
{
private int xLeft; // Left margin for cubes
private final int cubeSize;
private int cubeX, cubeY; // Cube coordinates (upper left corner)
private int yStep; // Distance (in pixels) to move down
// in one timer cycle
private int direction= 1;
private static final String letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
private char randomLetter; // Cube letter
public FallingCube(int size, int horzPos)
{
cubeSize = size;
xLeft = horzPos;
yStep = cubeSize / 8;
cubeX = -cubeSize; // off the board --
cubeY = -cubeSize; // not displayed
}
public void setHorizontalPos (int x)
{
x=xLeft;
}
public void start()
{
int i = (int)(Math.random() * letters.length());
randomLetter = letters.charAt(i);
cubeX = 0;
cubeY = yStep; //-cubeSize; // above the board for smooth entry
}
public boolean moveDown()
{
if (cubeY >= 6 * cubeSize)
{
direction=-direction;
}
if (cubeY <= yStep)// land this cube:
{
direction=-direction;
}
cubeY += yStep * direction;
return true;
}
public void draw(Graphics g)
{
int x = xLeft + cubeX;
int y = cubeY;
int j = (int)(Math.random() * 12);
//if (j==0)
//{
//g.setColor(Color.red);
//return true;
//}
g.setColor(Color.red);
g.fill3DRect(x, y, cubeSize-1, cubeSize-1, true);
g.setColor(Color. white);
g.fillRoundRect(x + 5, y + 5, cubeSize - 10, cubeSize - 10,
cubeSize/2 - 5, cubeSize/2 - 5);
g.setColor(Color.darkGray);
String s = String.valueOf(randomLetter);
g.drawString(s, x + cubeSize/2 - 6, y + cubeSize/2 + 5);
}
}
/**
* Implements a panel on which "letter cubes" fall
* in the Ramblecs applet
*/
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class LetterPanel extends JPanel
implements ActionListener
{
private FallingCube cube; //cube2, cube3;
private final int CUBESIZE = 40;
private final int delay = 30;
private Timer t;
public LetterPanel()
{
cube = new FallingCube(CUBESIZE, 2*CUBESIZE);
t = new Timer(delay, this);
//cube2 = new FallingCube(CUBESIZE, 3*CUBESIZE);
//cube3 = new FallingCube(CUBESIZE, 4*CUBESIZE);
}
public void dropCube()
{
cube.start();
//cube2.start();
//cube3.start();
t.start();
}
/**
* Processes timer events
*/
public void actionPerformed(ActionEvent e)
{
boolean moved = cube.moveDown();
//boolean moved2 = cube2.moveDown();
//boolean moved3 = cube3.moveDown();
if (!moved) // "If not moved... "
{
t.stop();
}
/**if (!moved2) // "If not moved... "
{
t.stop();
}
if (!moved3) // "If not moved... "
{
t.stop();
}*/
cube.setHorizontalPos(getWidth()/2-CUBESIZE/2);
//cube2.setHorizontalPos(getWidth()*2-CUBESIZE*2);
//cube3.setHorizontalPos(getWidth()*2-CUBESIZE*2);
repaint();
}
public void paintComponent(Graphics g)
{
super.paintComponent(g); // call JPanel's paintComponent
cube.draw(g);
//cube2.draw(g);
//cube3.draw(g);
}
}
/**
* This is the applet class for the Ramblecs game.
*/
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Ramblecs extends JApplet
//implements ActionListener
{
private LetterPanel whiteboard;//, yellowboard;
private JButton go;
private ControlPanel controlpanel;
public void init()
{
whiteboard = new LetterPanel();
//yellowboard = new LetterPanel();
//yellowboard.setBackground(Color.green);
whiteboard.setBackground(Color.red);
whiteboard.setSize(600, 200);
//Jbutton go = new JButton("Submit");
controlpanel = new ControlPanel(whiteboard);
//go.addActionListener(this);
Container c = getContentPane();
c.add(whiteboard, BorderLayout.CENTER);
// Box b = Box.createHorizontalBox();
// b.add(whiteboard);
//b.add(yellowboard);
// Container c = getContentPane();
c.add(controlpanel, BorderLayout.EAST);
// c.add(b, BorderLayout.CENTER);
//c.add(go, BorderLayout.NORTH);
}
/**
* Processes Go button events.
*/
/*public void actionPerformed(ActionEvent e)
{
if (Math.random() < 1)
{
whiteboard.dropCube();
}
else
{
//
1 AnswerProgramming & Design10 years agoDoes anyone know how to decrypt an MD5 with a salt in it?
4 AnswersSecurity1 decade agoWhy do atoms have half lives?
I understand how to calculate half-lives but I don't understand why the rate of decay is proportional to the current amount. Please Explain. Thank you.
5 AnswersPhysics1 decade agoHow can I get money for a science project? continued...?
Here is my question:
My friend and I desire to construct a little machine called a supercritical dryer to experiment with aerogels (extremely "undense" solid like substances). However, we are both in high school and can not afford to spend $750 to $1500 to build this. Does anybody know any grants (or anything that will give us money) to build a supercritical dryer?
This is an answer:
Email
Edit
Answers (1)
Semiquas...
As far as I know CERN gives out grants for exactly this kind of work. Call them up in Geneva, they might help you out.
Does anybody have any idea what this commenter is talking about (like a link) because I can not find where CERN is giving grants away?
2 AnswersOther - Science1 decade agoHow can I get money for a science project?
My friend and I desire to construct a little machine called a supercritical dryer to experiment with aerogels (extremely "undense" solid like substances). However, we are both in high school and can not afford to spend $750 to $1500 to build this. Does anybody know any grants (or anything that will give us money) to build a supercritical dryer?
2 AnswersEngineering1 decade agoHow can I get money for a science project?
My friend and I desire to construct a little machine called a supercritical dryer to experiment with aerogels (extremely "undense" solid like substances). However, we are both in high school and can not afford to spend $750 to $1500 to build this. Does anybody know any grants (or anything that will give us money) to build a supercritical dryer?
1 AnswerEngineering1 decade agoHow to get into an exclusive college?
I have a 4.0 GPA plus whatever AP gives you. I take a lot of challenging classes. I do a lot of extracurricular activities. However, everybody that goes to MIT and Stanford have the same accomplishments. How do you get accepted then?
3 AnswersOther - Education1 decade agoDoes anyone know any good links to information about particle physics or quantum mechanics?
I am familiar with single variable calculus and understand some multivariable calculus. I am looking for a site that is easily comprehensible but also uses basic calculus.
3 AnswersPhysics1 decade agowhat is the solution to e^x = x?
I have been trying to use Moivre's theorem to find the answer by I just don't know what to do.
4 AnswersMathematics1 decade agohow do you use guise in a sentence?
3 AnswersHomework Help1 decade ago