blob: 55d52ae1e3d28a9ef07739caa6a623a4974265a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\begin{document}
\title{Problems for Tutorial-05: Solution of equations}
\date{}
\maketitle
\begin{enumerate}
\item Write a Scilab script to find the intersection of the circle
$x^2 + y^2 - 25 = 0$ and the plane $x + 2y = 5$.
\item Find the solution of the equation $te^{-xt} + cos(t)sin(t) + x = 0$ and $x+z-1 = 0$.
\end{enumerate}
\end{document}
|