Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Topic: Vector Calculus Directions 1) Must use Mathematica or Java 2) The words \

ID: 664556 • Letter: T

Question

Topic: Vector Calculus

Directions

1) Must use Mathematica or Java

2) The words "A point (a vector) is given" mean that its coordinates (components) are given.

The words "A line is given" mean that its equation is given. You can use as an input either equation of the line in some form or its initial point and direction vector.

The words "A plane is given" means that its general equation is given. You can use as an input either this equation or the vector of coefficients.

The words "Determine . . . , find . . ." mean that you are asked to create a program (or some kind of software implementation) that takes as input the given data and returns the required equations.

(Please provide the source code)

Note: This is all the information given for this question.

Explanation / Answer

package com.java2novice.vector; import java.util.Iterator; import java.util.Vector; public class VectorIterator { public static void main(String a[]){ Vector<String> vct = new Vector<String>(); //adding elements to the end vct.add("First"); vct.add("Second"); vct.add("Third"); vct.add("Random"); Iterator<String> itr = vct.iterator(); while(itr.hasNext()){ System.out.println(itr.next()); } } } - See more at: http://www.java2novice.com/java-collections-and-util/vector/iterator/#sthash.KIWhofrL.dpuf