Prepared By: Miguel Perez Joel Shepherd.  Build a Java Program to represent the Finite- Difference Method numerically and graphically for easy visualization.

Slides:



Advertisements
Similar presentations
Solving Equations = 4x – 5(6x – 10) -132 = 4x – 30x = -26x = -26x 7 = x.
Advertisements

Technical Question Technical Question
Solving quadratic equations Factorisation Type 1: No constant term Solve x 2 – 6x = 0 x (x – 6) = 0 x = 0 or x – 6 = 0 Solutions: x = 0 or x = 6 Graph.
9.4 – Solving Quadratic Equations By Completing The Square
6.8 –Systems of Inequalities. Just like systems of equations, but do the inequality part!
Solve a radical equation
Solving Systems of Equations Graphically. Quadratic Equations/ Linear Equations  A quadratic equation is defined as an equation in which one or more.
Thinking Mathematically Algebra: Graphs, Functions and Linear Systems 7.3 Systems of Linear Equations In Two Variables.
Monday, March 23 Today's Objectives
Slide Systems of Linear Equations A system of linear equations consists two or more linear equations.
Substitute 0 for y. Write original equation. To find the x- intercept, substitute 0 for y and solve for x. SOLUTION Find the x- intercept and the y- intercept.
Substitute 0 for y. Write original equation. To find the x- intercept, substitute 0 for y and solve for x. SOLUTION Find the x- intercept and the y- intercept.
Solving Systems of 3 or More Variables Why a Matrix? In previous math classes you solved systems of two linear equations using the following method:
Set Operations and Compound Inequalities. 1. Use A = {2, 3, 4, 5, 6}, B = {1, 3, 5, 7, 9}, and C = {2, 4, 6, 8} to find each set.
Chapter 10.7 Notes: Solve Quadratic Equations by the Quadratic Formula Goal: You will solve quadratic equations by using the Quadratic Formula.
Learning Task/Big Idea: Students will learn how to find roots(x-intercepts) of a quadratic function and use the roots to graph the parabola.
HOT PLATE CONDUCTION NUMERICAL SOLVER AND VISUALIZER Kurt Hinkle and Ivan Yorgason.
3.6 Solving Absolute Value Equations and Inequalities
1 Solve each: 1. 5x – 7 > 8x |x – 5| < 2 3. x 2 – 9 > 0 :
5.2 – Solving Inequalities by Multiplication & Division.
Solving Open Sentences Involving Absolute Value
Quadratics Solving Quadratic Equations. Solving by Factorising.
Easy Substitution Assignment. 1. What are the steps for solving with substitution?
Solving Systems of Equations
Key Concepts for Sect. 7.1 *A system of equations is two or more equations in two or more variables. *Numerically, a solution to a system of equations.
Evan Selin & Terrance Hess.  Find temperature at points throughout a square plate subject to several types of boundary conditions  Boundary Conditions:
Notes Over 3.1 Solving a System Graphically Graph the linear system and estimate the solution. Then check the solution algebraically.
EXAMPLE 1 Solve a system graphically Graph the linear system and estimate the solution. Then check the solution algebraically. 4x + y = 8 2x – 3y = 18.
Solve Systems Graphically (With Calculator) Sketch the 3 possible solution scenarios of a system of linear equations. Reg Algebra 2 – Unit 2.
Notes Over 9.4 Checking a Solution Using a Graph The solution, or roots of an equation are the x-intercepts. Solve the equation algebraically. Check the.
SOLVE QUADRATIC EQUATIONS BY USING THE QUADRATIC FORMULA. USE THE DISCRIMINANT TO DETERMINE THE NUMBER AND TYPE OF ROOTS OF A QUADRATIC EQUATION. 5.6 The.
Solving Radical Equations and Inequalities Objective: Solve radical equations and inequalities.
Program design Program Design Process has 2 phases:
To find the solution of simultaneous equations graphically: 1)
3.3 – Solving Systems of Inequalities by Graphing
10.8 Systems of Second-Degree Equations and Inequalities
Solving Quadratic Equations by the Complete the Square Method
Solving Systems Using Substitution
Graphical Solution of Simultaneous Equations
Notes Over 9.6 An Equation with One Solution
Use a graphing calculator to determine the graph of the equation {image} {applet}
Notes Over 4.7 Solving an Equation Graphically
Solving Systems of Linear and Quadratic Equations
9.3 Solving Quadratic Equations
Solve a system of linear equation in two variables
Chapter 3 Section 3.
Solutions to Systems of Equations
Equations with Variables on Both Sides Day 2
USING GRAPHS TO SOLVE EQUATIONS
Systems of Linear and Quadratic Equations
A graphing calculator is required for some problems or parts of problems 2000.
Quadratic Equations L.O.
Graphing Solutions of Trig Functions
Objective - To solve quadratic equations by completing the square.
Warm Up Graph
Solving Systems of Linear and Quadratic Equations
5.1 Solving Systems of Equations by Graphing
Solving Linear Equations by Graphing
Solve the equation: 6 x - 2 = 7 x + 7 Select the correct answer.
Systems of Equations Solve by Graphing.
Graphical Solution of Simultaneous Equations
RELATIONS & FUNCTIONS CHAPTER 4.
Chapter 6 Systems of Linear Equations.
Drawing Graphs The straight line Example
Example 5A: Solving Simple Rational Equations
Linear and Nonlinear Systems of Equations
GRAPHING LINEAR EQUATIONS
Linear and Nonlinear Systems of Equations
Objectives: To graph lines using the slope-intercept equation
Intersection Method of Solution
Presentation transcript:

Prepared By: Miguel Perez Joel Shepherd

 Build a Java Program to represent the Finite- Difference Method numerically and graphically for easy visualization of temperature distribution on a hot plate. Temperature Distribution on a Hot Plate2

This method is used to solve temperature distribution across a square plate. 3Temperature Distribution on a Hot Plate

 We built a Java Program to calculate numerical solutions in increments to show visual representation of the temperature distribution. (See additional Resources on CD for Java code) 4Temperature Distribution on a Hot Plate

Example 1 (Output from Java program specifications) 5 Temperature Distribution on a Hot Plate

Example 1 (Graph) Temperature Distribution on a Hot Plate6

Example 2 (Output from Java program specifications) 7Temperature Distribution on a Hot Plate

Example 2 (Graph) Temperature Distribution on a Hot Plate8

Example 3 (Output from Java program specifications) 9Temperature Distribution on a Hot Plate

Example 3 (Graph) Temperature Distribution on a Hot Plate10

This Java program can be very effective in measuring temperature distribution on a hot plate both numerically and visually through graphs. This program can also be used and modified for more difficult problems that are meticulous and timely to numerically equate by hand. Temperature Distribution on a Hot Plate11