This question may seem repetitive to many, but as I am very new to Latex, even after reading many posts, could not get to draw what I wanted, so asking.
I want to draw as the following.

I have written the following code, Please help further.
\documentclass[11pt, oneside]{article}
\usepackage{geometry} % See geometry.pdf to learn the layout options. There are lots.
\geometry{letterpaper} % ... or a4paper or a5paper or ...
\geometry{landscape}
\usepackage{tikz} % TeX will automatically convert eps --> pdf in pdflatex
\usepackage{amssymb}
\usepackage{textcomp}
\usepackage{gensymb}
\usepackage{tkz-euclide}
\usetikzlibrary{shapes.geometric}
\usetikzlibrary{calc}
\usepackage{graphicx}
\usetikzlibrary{plotmarks}
\title{}
\author{}
\begin{document}
\begin{tikzpicture}
\draw (0,0) circle(2) node [left] {P};
\draw (3.5,0) circle(1.5) node [below] {Q};
\draw (0,0) -- (14,0) node [right] {O};
\newcommand*{\Radius}{2cm}%
\coordinate (Origin) at (0,0);
\coordinate (O) at (14,0);% External point
\tkzDrawCircle[R](Origin,\Radius)
\tkzTangent[from with R= O](Origin,\Radius) \tkzGetPoints{R}{I}
\tkzDrawSegments[ultra thick](O,R)% First tangent
\tkzDrawSegments[ultra thick](O,I)% Second tangent
\end{tikzpicture}
\end{document}






