answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
weeeeeb [17]
2 years ago
15

Use Euler's method to obtain a four-decimal approximation of the indicated value. Carry out the recursion of (3) in Section 2.6

yn + 1 = yn + hf(xn, yn) (3) by hand, first using h = 0.1 and then using h = 0.05. y' = 2x − 3y + 1, y(1) = 9; y(1.2) y(1.2) ≈ (h = 0.1) y(1.2) ≈ (h = 0.05)
Mathematics
1 answer:
Sergeu [11.5K]2 years ago
6 0

Answer:

At h=0.1 value od y(1.2)=15.920, and at h=0.05, y(1.2)=16.523.

Step-by-step explanation:

Given,

f(x,y)=\frac{dy}{dx}=2x+3y+1 with y(1)=9.

That is when x=1 then y=9 initially.

To find value of y= f(x,y) at x_n=x_0+nh=1.2 when y=0.1 and y=0.05 we will use c-programme  of Eular method we get, for h=0.1 :

#include<stdio.h>

float fun(float x, float y)

{

  float f;

  f=2x+3y+1;

  return f;

}

main()

{

   float a,b,x,y,h,t,k;

   printf("\ Enter x0,y0,h,xn:");

   scanf("% f % f % f % f ", & a, &b, &h, &t);

   x=a;

   y=b;

   printf("\n x\t y\n");

   while (x<=t)

{

   k=h*fun(x,y);

   x=x+h;

   y=y+k;

   printf("%0.3f\%0.3f\n",x,y);

}

}

By putting value x0=1, y0=9, h=0.1, xn=1.2  we will get results as, y(1.2)=15.920.

Again by putting values x0=1, y0=9, 0.h=05, xn=1.2 we get y(1.2)=16.523.

You might be interested in
Given that the two parallel lines are cut by a transversal, and the measure of angle 2 is 50 degrees. Find each of the missing a
Mandarinka [93]

Answer:

Step-by-step explanation:

Lines m and l are the parallel lines and a line 'n' is a transverse intersecting these lines.

m∠2 = 50°

m∠1 + m∠2 = 180° [Linear pair of angles]

m∠1 = 180° - 50°

m∠1 = 130°

m∠3 = m∠1 = 130° [Vertically opposite angles]

m∠3 + m∠5 = 180° [Consecutive interior angles]

m∠5 = 180° - m∠3

        = 180° - 130°

        = 50°

m∠6 + m∠5 = 180° [Linear pair of angles]

m∠6 = 180° - 50° = 130°

7 0
2 years ago
Which expression represents the total perimeter of her sandwich, and if x = 1.2, what is the approximate length of the crust?
soldi70 [24.7K]
The answer to this question is choice option letter C
7 0
2 years ago
Read 2 more answers
A person is watching a boat from the top of a lighthouse. The boat is approaching the lighthouse directly. When first noticed, t
maksim [4K]

Answer:

Boat traveled 553.24 feet towards the lighthouse.

Step-by-step explanation:

In the figure attached AB is the light house of height 200 feet.

Angle of depression of the boat from the top of a lighthouse = angle of elevation of the lighthouse from the boat = 14°52'

so 1' = \frac{1}{60} degree

so angle of elevation at point C = 14 + \frac{52}{60}

So angle of elevation from C = (14 + 0.87) = 14.87°

Similarly, when boat arrives at point D angle of elevation = 45°10' = 45 + \frac{10}{60} = 45.17°

Now we have to calculate the distance CD, traveled by the boat.

In ΔABC

tan14.87 = \frac{200}{BC}

0.2655 =  \frac{200}{BC}

BC = \frac{200}{0.26552}

BC = 753.239 feet

Similarly in ΔABD

tan45.17 = \frac{200}{BD}

1 = \frac{200}{BD}

BD = 200 feet

So distance CD = BC - BD

CD = 753.239 - 200

     = 553.24 feet

Therefore, Boat traveled 553.24 feet towards the lighthouse.

7 0
2 years ago
Read 2 more answers
A machine can manufacture 24,000 plastic balls in 8 hours. Find the unit rate in balls per hour.
Lorico [155]
24,000/8= 3,000 balls

The machine produce 3,000 balls per hour.

Hope that helps!
5 0
2 years ago
Read 2 more answers
The number 8.64E9 appears on a calculator. In standard notation, this number is
Lunna [17]
Here are all of your answers:

1) 8,640,000,000
2) 864,000,000,000,000
3) 864,000,000,000
4) 86,400,000,000,000

I hope this helps! If it does, please rate as Brainliest :D
6 0
2 years ago
Read 2 more answers
Other questions:
  • Chelsea has 11 times as many art brushes as Monique. If they have 60 art brushes altogether, how many brushes does Chelsea have?
    12·1 answer
  • Which equation can be used to find the measure of angle FGE?
    12·1 answer
  • Simplify fully 13/2x - 5/x
    9·2 answers
  • Flannery used 30 lilies and 78 roses to create six identical flower arrangements. Write an equation to describe the relationship
    15·1 answer
  • What are possible values for x if (4x-5)^2=49
    6·2 answers
  • 7. Certain car manufacturers install a gauge that tells the driver how many miles they can drive
    13·1 answer
  • Trapezoid $RSTU$ is a cross section of a lampshade. The diagonals of $RSTU$ are congruent, and the measure of $\angle S$ is $112
    13·1 answer
  • A venue plans to host trucking events regularly throughout the year. The expected revenue from each event is $100,000. The cost
    15·1 answer
  • There are between 60 and 100 children at the sunny side holiday camp. When the children are put into pairs, there is 1 child lef
    15·1 answer
  • A falcon flying 55 mph crosses a lake in 1 minute. How long would it take a hummingbird flying 45 mph to cross the same lake?
    14·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!