In this section we derived the equation d2 y dt2 + b dy dt + ky = k A cost bA sint, where k and b are constants. Use the Method of Undetermined Coefficients to find a particular solution of this equation. [Hint: Note that the parameters k and b appear on both sides of the equation. Since they are constants, this causes no more complication but does require careful bookkeeping.]
Klaliff Varney- U0912359 HW 11 Part 1: Part 2: Code: /* package whatever; // don't place package name! */ import java.util.*; import java.lang.*; import java.io.*; class Square{ int sideLength; Square(int size){ sideLength = size; } int drawSquare(){ return sideLength; } //Klaliff Varney-u0921359 public static void main(String[] args){ Square mySquare = new Square(1); int draw = mySquare.drawSquare(); for(int x = 0; x < draw; x++){ for(int y = 0; y < draw; y++){ System.out.print("*");