Equation second degree, cramer , slideshow pane
This project is a JavaScript practice with three main features:
-
Quadratic Equation Solver: This program solves quadratic equations using Cramer's method. It handles equations with two unknowns to provide the solutions.
-
System of Equations Solver: Using Cramer's method, this script solves systems of linear equations with two unknowns.
-
Advertising Panel Slideshow: The project also includes a feature to display a slideshow of multiple advertising panels. The images are shown in sequence, creating an advertising animation.
- Clone the repository to your local machine.
- Open the index12.html file in your web browser to access the web page.
- Follow the instructions on the page to use the different features of the project.
const a = 1;
const b = -3;
const c = 2;
const solutions = solveQuadraticEquation(a, b, c);
console.log(solutions); // Displays the solutions of the equation
const matrixA = [
[2, -1],
[3, 4]
];
const vectorB = [5, 7];
const solutions = solveSystemOfEquations(matrixA, vectorB);
console.log(solutions); // Displays the values of the two unknowns in the system
<div class="slideshow-container">
<div class="slide fade">
<img src="advertisement1.jpg" alt="Advertisement 1">
</div>
<div class="slide fade">
<img src="advertisement2.jpg" alt="Advertisement 2">
</div>
<!-- Add more advertising panels here -->
</div>
Contributions to this project are welcome. If you have ideas for improvements or bug fixes, feel free to open a pull request.
Github - @hoby_hardiot